From c0ff722e403fefea773ae99e9f29c5f69bdaaec3 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Sun, 1 Jan 2023 12:25:47 -0800 Subject: [PATCH] meson: fix option value This is a boolean, not a string. Found with muon analyze. Signed-off-by: Rosen Penev --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index 339948b913..6270eb0aa6 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -193,7 +193,7 @@ option('use-tls', option('pg-bell', type : 'boolean', value : true, description : 'should pg ring the bell on invalid keys?') -option('colors-default', type: 'boolean', value: 'true', +option('colors-default', type: 'boolean', value: true, description: 'Enables colorized output from utils by default') option('fs-search-path', -- 2.47.2