Selaa lähdekoodia

fix error message when no type matches.

Lucas Stadler 11 vuotta sitten
vanhempi
commit
4a6301bab2
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      go/detect/detect.go

+ 1 - 1
go/detect/detect.go

@ -65,7 +65,7 @@ func Detect(file string) (*Project, error) {
65 65
		}
66 66
	}
67 67
68
	return nil, errors.New("no project matches")
68
	return nil, errors.New("no project type matches")
69 69
}
70 70
71 71
func DetectAll(file string) []*Project {