diff --git a/cmd/start.go b/cmd/start.go index 289cea1..5453bf0 100644 --- a/cmd/start.go +++ b/cmd/start.go @@ -31,7 +31,7 @@ func init() { startCmd.Flags().BoolVarP(&startConfig.Server, "server", "s", false, "Start server") startCmd.Flags().BoolVarP(&startConfig.Open, "open", "o", false, "Open into the default browser") startCmd.Flags().BoolVarP(&startConfig.Install, "install", "i", true, "Enable go install") - startCmd.Flags().BoolVarP(&startConfig.Build, "build", "b", true, "Enable go build") + startCmd.Flags().BoolVarP(&startConfig.Build, "build", "b", false, "Enable go build") startCmd.Flags().BoolVarP(&startConfig.Run, "run", "r", true, "Enable go run") startCmd.Flags().BoolVarP(&startConfig.Legacy, "legacy", "l", false, "Legacy watch by polling instead fsnotify") startCmd.Flags().BoolVarP(&startConfig.NoConfig, "no-config", "c", false, "Ignore existing config and doesn't create a new one") diff --git a/haunt b/haunt new file mode 100755 index 0000000..805d919 Binary files /dev/null and b/haunt differ diff --git a/src/haunt/cli.go b/src/haunt/cli.go index 92b095c..9c95629 100644 --- a/src/haunt/cli.go +++ b/src/haunt/cli.go @@ -93,9 +93,6 @@ func (r *Haunt) SetDefaults() { Install: Tool{ Status: true, }, - Build: Tool{ - Status: true, - }, Run: Tool{ Status: true, },