summaryrefslogtreecommitdiff
path: root/unix.go
diff options
context:
space:
mode:
Diffstat (limited to 'unix.go')
-rw-r--r--unix.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix.go b/unix.go
index 47dde92..2bc03c4 100644
--- a/unix.go
+++ b/unix.go
@@ -222,13 +222,13 @@ func VerifyLocalGoRepo(gorepo string) bool {
// Form the path to the home Git directory
gitDir := filepath.Join(usr.HomeDir, "go/src/", gorepo, ".git")
- log.Log(WARN, "VerifyLocalGoRepo() checking directory:", gitDir)
+ log.Log(INFO, "VerifyLocalGoRepo() checking directory:", gitDir)
if IsDirectory(gitDir) {
return true
}
goDir := filepath.Join(usr.HomeDir, "go/src/", gorepo)
gomod := goDir + "/go.mod"
- log.Log(WARN, "VerifyLocalGoRepo() checking for go.mod :", gomod)
+ log.Log(INFO, "VerifyLocalGoRepo() checking for go.mod :", gomod)
_, err = os.Stat(gomod)
if os.IsNotExist(err) {
return false