mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
9 lines
147 B
Bash
Executable File
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 "$@"
|