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

9 lines
147 B
Bash
Executable File

#!/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 "$@"