Clean up public-facing default value for config file
This commit is contained in:
parent
13143c756c
commit
8b8c819413
2 changed files with 6 additions and 2 deletions
|
@ -95,7 +95,7 @@ pages:
|
||||||
before_script:
|
before_script:
|
||||||
- apt-get update && apt-get install -y hugo
|
- apt-get update && apt-get install -y hugo
|
||||||
script:
|
script:
|
||||||
- ./signaldctl doc
|
- SIGNALDCTL_PUBLIC_DOC_MODE=on ./signaldctl doc
|
||||||
- cd docs
|
- cd docs
|
||||||
- hugo
|
- hugo
|
||||||
- mv public ../
|
- mv public ../
|
||||||
|
|
|
@ -66,7 +66,11 @@ func Execute() {
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
cobra.OnInitialize(initConfig)
|
cobra.OnInitialize(initConfig)
|
||||||
RootCmd.PersistentFlags().StringVar(&config.Path, "config", fmt.Sprintf("%s/.config/signaldctl.yaml", os.Getenv("HOME")), "config file (default is ~/.config/signaldctl.yaml)")
|
defaultConfigPath := fmt.Sprintf("%s/.config/signaldctl.yaml", os.Getenv("HOME"))
|
||||||
|
if os.Getenv("SIGNALDCTL_PUBLIC_DOC_MODE") == "on" {
|
||||||
|
defaultConfigPath = "~/.config/signaldctl.yaml"
|
||||||
|
}
|
||||||
|
RootCmd.PersistentFlags().StringVar(&config.Path, "config", defaultConfigPath, "config file")
|
||||||
RootCmd.PersistentFlags().StringVar(&socketPath, "socket", "/var/run/signald/signald.sock", "the path to the signald socket file")
|
RootCmd.PersistentFlags().StringVar(&socketPath, "socket", "/var/run/signald/signald.sock", "the path to the signald socket file")
|
||||||
RootCmd.PersistentFlags().StringVarP(&common.OutputFormat, "output-format", "o", "default", "the output format. options are usually table, yaml and json, default is usually table. Some commands have other options.")
|
RootCmd.PersistentFlags().StringVarP(&common.OutputFormat, "output-format", "o", "default", "the output format. options are usually table, yaml and json, default is usually table. Some commands have other options.")
|
||||||
RootCmd.AddCommand(account.AccountCmd)
|
RootCmd.AddCommand(account.AccountCmd)
|
||||||
|
|
Loading…
Reference in a new issue