mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-24 22:16:26 +02:00
6 lines
89 B
Bash
6 lines
89 B
Bash
#!/usr/bin/env bash
|
|
|
|
mv $1 $1.go
|
|
filename=$1.go
|
|
shift
|
|
GOCACHE=$PWD go run $filename "$@"
|