aboutsummaryrefslogtreecommitdiff
path: root/your_git.sh
blob: 4c2c367b931fba90cd90184e12740fe879a4c65f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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)

( cd $(dirname "$0") &&
	go build -buildvcs="false" -o "$tmpFile" ./cmd/mygit )

exec "$tmpFile" "$@"