Skip to content

Commit a0861a8

Browse files
committed
fix
1 parent 4f5303b commit a0861a8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cmd/pbm/main.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,9 @@ func (app *pbmApp) buildConfigCmd() *cobra.Command {
376376
}
377377

378378
configCmd.Flags().BoolVar(&cfg.rsync, "force-resync", false, "Resync backup list with the current store")
379-
configCmd.Flags().BoolVar(&cfg.skipRestores, "skip-restores", false, "Skip physical restore metadata during force-resync")
379+
configCmd.Flags().BoolVar(
380+
&cfg.skipRestores, "skip-restores", false, "Skip physical restore metadata during force-resync",
381+
)
380382
configCmd.Flags().BoolVar(&cfg.list, "list", false, "List current settings")
381383
configCmd.Flags().StringVar(&cfg.file, "file", "", "Upload config from YAML file")
382384
configCmd.Flags().StringToStringVar(&cfg.set, "set", nil, "Set the option value <key.name=value>")

0 commit comments

Comments
 (0)