1
0
mirror of https://github.com/beego/bee.git synced 2025-06-11 13:30:39 +00:00

use go env check project is go mod or not.

This commit is contained in:
qiantao
2020-07-11 13:02:25 +08:00
parent 4110083cae
commit 4158ab284e
2 changed files with 12 additions and 1 deletions

View File

@ -452,3 +452,14 @@ func GetGoVersionSkipMinor() string {
strArray := strings.Split(runtime.Version()[2:], `.`)
return strArray[0] + `.` + strArray[1]
}
func IsGOMODULE() bool {
if combinedOutput, e := exec.Command(`go`, `env`).CombinedOutput(); e != nil {
beeLogger.Log.Errorf("i cann't find go.")
} else {
regex := regexp.MustCompile(`GOMOD="?(.+go.mod)"?`)
stringSubmatch := regex.FindStringSubmatch(string(combinedOutput))
return len(stringSubmatch) == 2
}
return false
}