Skip to content

Commit

Permalink
noop by default
Browse files Browse the repository at this point in the history
Signed-off-by: Muvaffak Onus <[email protected]>
  • Loading branch information
muvaf committed Apr 18, 2023
1 parent cbb64cb commit 8ca8b8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/provider/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func main() {
enableExternalSecretStores = app.Flag("enable-external-secret-stores", "Enable support for ExternalSecretStores.").Default("false").Envar("ENABLE_EXTERNAL_SECRET_STORES").Bool()

// It is true by default for experimentation.
doNothing = app.Flag("do-nothing", "Do nothing.").Default("false").Envar("DO_NOTHING").Bool()
doNothing = app.Flag("do-nothing", "Do nothing.").Default("true").Envar("DO_NOTHING").Bool()
)
kingpin.MustParse(app.Parse(os.Args[1:]))
if *doNothing {
Expand Down

0 comments on commit 8ca8b8e

Please sign in to comment.