pkg(go-1.16.2): quick fix for filename issue

This commit is contained in:
Dan Vargas 2021-04-24 21:36:05 -05:00
parent 5f267a98b4
commit bb3e6b5b7f

View file

@ -1,3 +1,6 @@
#!/usr/bin/env bash
GOCACHE=$PWD go run "$@"
mv $1 $1.go
filename=$1.go
shift
GOCACHE=$PWD go run $filename "$@"