mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
9 lines
119 B
Plaintext
9 lines
119 B
Plaintext
|
#!/bin/sh
|
||
|
file="$1"
|
||
|
if [ -n "${file}" ]; then
|
||
|
file="./${file}"
|
||
|
else
|
||
|
file="."
|
||
|
fi
|
||
|
exec go install "${file}" "$@"
|