Mention clear-go-cache helper in build scripts

This commit is contained in:
Stu Leak 2025-12-09 00:43:00 -05:00
parent 4ad62b5d57
commit 0a90d15e46
2 changed files with 2 additions and 2 deletions

View File

@ -68,6 +68,6 @@ else
echo "Help: check the Go error messages above."
echo " - Undefined symbol/identifier: usually a missing variable or typo in source; see the referenced file:line."
echo " - \"C compiler not found\": install a C toolchain (e.g., build-essential on Ubuntu, Xcode CLT on macOS)."
echo " - Cache permission denied: run 'rm -rf ~/.cache/go-build' or 'chown -R $USER ~/.cache/go-build'."
echo " - Cache permission denied: run scripts/clear-go-cache.sh or 'rm -rf ~/.cache/go-build' / 'chown -R $USER ~/.cache/go-build'."
exit 1
fi

View File

@ -101,7 +101,7 @@ case "$OS" in
echo "Help: check the Go error messages above."
echo " - Undefined symbol/identifier: usually a missing variable or typo in source; see the referenced file:line."
echo " - \"C compiler not found\": install MinGW-w64 or MSYS2 toolchain so gcc is in PATH."
echo " - Cache permission denied: delete or chown the Go build cache (e.g., %LOCALAPPDATA%\\go-build on Windows)."
echo " - Cache permission denied: run scripts/clear-go-cache.sh or delete/chown the Go build cache (e.g., %LOCALAPPDATA%\\go-build on Windows)."
exit 1
fi
;;