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 a1030dc..8c12ed8 100644
--- a/unix.go
+++ b/unix.go
@@ -216,14 +216,14 @@ func VerifyLocalGoRepo(gorepo string) bool {
// Get current user
usr, err := user.Current()
if err != nil {
- log.Error(err, "VerifyLocalGoRepo() thinks you should switch to Ultrix")
+ log.Error(err, "VerifyLocalGoRepo() are you really POSIX compliant?")
return false
}
// Form the path to the home Git directory
gitDir := filepath.Join(usr.HomeDir, "go/src/", gorepo, ".git")
- log.Log(INFO, "go directory:", gitDir)
+ log.Log(WARN, "VerifyLocalGoRepo() checking directory:", gitDir)
return IsDirectory(gitDir)
}