rwxrob-dot/scripts/gor

9 lines
147 B
Plaintext
Raw Normal View History

2022-02-09 07:29:05 +00:00
#!/bin/sh
if [ -e "main.go" ]; then
exec go run main.go "$@"
fi
if [ -e "generate.go" ]; then
exec go run generate.go "$@"
fi
exec go run "$@"