#323: Removes the check if the current path is a Beego project

This commit is contained in:
Faissal Elamraoui
2016-11-21 15:23:08 +01:00
parent ac935ad4e0
commit e39dc9fb7f
4 changed files with 7 additions and 14 deletions

View File

@ -124,7 +124,7 @@ func getGoVersion() string {
)
if cmdOut, err = exec.Command("go", "version").Output(); err != nil {
logger.Fatalf("There was an error running go version command: %s", err)
logger.Fatalf("There was an error running 'go version' command: %s", err)
}
return strings.Split(string(cmdOut), " ")[2]
}