From 1093a4b33d439bbc2f93786eea67889efaac6aaf Mon Sep 17 00:00:00 2001 From: Thomas Piccirello Date: Mon, 30 Dec 2019 22:34:26 -0800 Subject: [PATCH] Document required args better --- pkg/cmd/run.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/cmd/run.go b/pkg/cmd/run.go index d314ceb0..c8d9ed95 100644 --- a/pkg/cmd/run.go +++ b/pkg/cmd/run.go @@ -133,8 +133,8 @@ func init() { runCmd.Flags().StringP("config", "c", "", "enclave config (e.g. dev)") runCmd.Flags().String("fallback", "", "write secrets to this file after connecting to Doppler. secrets will be read from this file if future connection attempts are unsuccessful.") - runCmd.Flags().Bool("fallback-readonly", false, "do not update or modify the fallback file") - runCmd.Flags().Bool("fallback-only", false, "do not request secrets from Doppler. all secrets will be read directly from the fallback file") + runCmd.Flags().Bool("fallback-readonly", false, "do not update or modify the fallback file. [requires --fallback]") + runCmd.Flags().Bool("fallback-only", false, "do not request secrets from Doppler. all secrets will be read directly from the fallback file. [requires --fallback]") rootCmd.AddCommand(runCmd) }