Fix log message about Glide

This commit is contained in:
Owen Mansel-Chan
2023-06-23 22:17:02 +01:00
parent 8726b3a00e
commit e43fd72fc1

View File

@@ -251,7 +251,7 @@ func getDepMode() DependencyInstallerMode {
return Dep
}
if util.FileExists("glide.yaml") {
log.Println("Found glide.yaml, enabling go modules")
log.Println("Found glide.yaml, using Glide instead of go get")
return Glide
}
return GoGetNoModules