7 lines
253 B
Bash
7 lines
253 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# Shared helper: put the Go toolchain on PATH. Source this from other scripts.
|
||
|
|
# The toolchain isn't on the default PATH on this machine.
|
||
|
|
if ! command -v go >/dev/null 2>&1; then
|
||
|
|
export PATH="$PATH:/home/jm/go-toolchain/go/bin"
|
||
|
|
fi
|