diff --git a/ocis-pkg/flags/overrides.go b/ocis-pkg/flags/overrides.go index 80b8e3b9c..f641cf00b 100644 --- a/ocis-pkg/flags/overrides.go +++ b/ocis-pkg/flags/overrides.go @@ -15,7 +15,7 @@ func OverrideDefaultString(v, def string) string { // value by providing one. A value different than zero would mean that it was read from a config file either from an // extension or from a higher source (i.e: ocis command). func OverrideDefaultBool(v, def bool) bool { - if v != false { + if v { return v }