blob: 439ca820fdb168210a9212fff00b5a1eb04fd2ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
#
# DON'T EDIT THIS!
#
# CodeCrafters uses this file to test your code. Don't make any changes here!
#
# DON'T EDIT THIS!
set -e
tmpFile=$(mktemp)
go build -o "$tmpFile" app/*.go
exec "$tmpFile" "$@"
|