Explorar el Código

fix error message when no type matches.

Lucas Stadler %!s(int64=11) %!d(string=hace) años
padre
commit
4a6301bab2
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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 {