Tweaking golang warning text
Some checks failed
CI / Test (push) Failing after 45s
CI / Build (push) Has been skipped
CI / Build-1 (push) Has been skipped
CI / Build-2 (push) Has been skipped
CI / Build-3 (push) Has been skipped
CI / Build-4 (push) Has been skipped

This commit is contained in:
Jezza Hehn 2026-05-22 20:51:28 -04:00
parent 094fab3898
commit 119dbe14c4

View file

@ -30,11 +30,11 @@ check-go:
@if ! command -v go >/dev/null 2>&1; then \
echo ""; \
echo " ╭──────────────────────────────────────────────╮"; \
echo " │ ⚠ Go is not installed on this machine │"; \
echo " │ ⚠ Go is not installed on this machine! │"; \
echo " ├──────────────────────────────────────────────┤"; \
echo " │ │"; \
echo " │ obm is a Go project. You need the Go │"; \
echo " │ toolchain to build from source. │"; \
echo " │ This is a Go project. You need the │"; \
echo " │ Go language toolchain to build from source. │"; \
echo " │ │"; \
echo " │ Install Go: │"; \
echo " │ Linux: your package manager │"; \
@ -44,7 +44,7 @@ check-go:
echo " │ │"; \
echo " │ Windows: https://go.dev/dl/ │"; \
echo " │ │"; \
echo " │ Or use the all-in-one script: │"; \
echo " │ Or use the obm full install script: │"; \
echo " │ ./scripts/install.sh │"; \
echo " │ │"; \
echo " ╰──────────────────────────────────────────────╯"; \