Skip to content

Commit

Permalink
Remove extra dashes (ko-build#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonjohnsonjr authored Sep 20, 2019
1 parent 451287a commit f26825f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/commands/options/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ type BuildOptions struct {
}

func AddBuildOptions(cmd *cobra.Command, bo *BuildOptions) {
cmd.Flags().IntVarP(&bo.ConcurrentBuilds, "--jobs", "j", runtime.GOMAXPROCS(0),
cmd.Flags().IntVarP(&bo.ConcurrentBuilds, "jobs", "j", runtime.GOMAXPROCS(0),
"The maximum number of concurrent builds")
cmd.Flags().BoolVar(&bo.DisableOptimizations, "disable-optimizations", bo.DisableOptimizations,
"Disable optimizations when building Go code. Useful when you want to interactively debug the created container.")
Expand Down

0 comments on commit f26825f

Please sign in to comment.