summaryrefslogtreecommitdiff
path: root/unix.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-25 01:30:01 -0600
committerJeff Carr <[email protected]>2024-01-25 01:30:01 -0600
commit4beeb0bb137bf179064354fa6fc3be2c951bdef6 (patch)
treea4a5109a9034cef43903628747b5875f5949843e /unix.go
parent21546ce2c002e1550754578b1083f0a9c6d0a77d (diff)
cleaning code for release versionsv0.13.2
Signed-off-by: Jeff Carr <[email protected]>
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)
}