fix out of bounds panic with "garble build"

Forgot to run all the tests with the last commit.
pull/22/head
Daniel Martí 5 years ago
parent 1ef3daf251
commit f0a609c7fc

@ -151,9 +151,11 @@ func mainErr(args []string) error {
case "help":
flagSet.Usage()
case "build", "test":
switch args[1] {
case "-h", "-help", "--help":
flagSet.Usage()
if len(args) > 1 {
switch args[1] {
case "-h", "-help", "--help":
flagSet.Usage()
}
}
wd, err := os.Getwd()
if err != nil {

Loading…
Cancel
Save