diff --git a/.yourbase.yml b/.yourbase.yml index a1309b7..185aa83 100644 --- a/.yourbase.yml +++ b/.yourbase.yml @@ -19,9 +19,3 @@ ci: builds: - name: test_build build_target: default - when: branch IS 'main' OR action IS 'pull_request' - - - name: test - build_target: test - when: branch IS 'main' OR action IS 'pull_request' - diff --git a/cmd/yb/run.go b/cmd/yb/run.go index e5e4759..1b43c3b 100644 --- a/cmd/yb/run.go +++ b/cmd/yb/run.go @@ -43,7 +43,7 @@ func newRunCmd() *cobra.Command { envFlagsVar(c.Flags(), &b.env) netrcFlagVar(c.Flags(), &b.netrcFiles) executionModeVar(c.Flags(), &b.mode) - c.Flags().StringVarP(&b.target, "target", "t", yb.DefaultTarget, "The target to run the command in") + c.Flags().StringVarP(&b.target, "target", "t", yb.DefaultTarget, "The target to run the command in!") c.RegisterFlagCompletionFunc("target", func(cc *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) { return autocompleteTargetName(toComplete) })