rwxrob-dot/scripts/goi
Rob Muhlestein 2ea0289e9f Rebase
2022-02-09 02:29:05 -05:00

9 lines
119 B
Bash
Executable File

#!/bin/sh
file="$1"
if [ -n "${file}" ]; then
file="./${file}"
else
file="."
fi
exec go install "${file}" "$@"