From 4beeb0bb137bf179064354fa6fc3be2c951bdef6 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 25 Jan 2024 01:30:01 -0600 Subject: cleaning code for release versions Signed-off-by: Jeff Carr --- unix.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unix.go') 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) } -- cgit v1.2.3