diff options
Diffstat (limited to 'your_shell.sh')
| -rwxr-xr-x | your_shell.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/your_shell.sh b/your_shell.sh new file mode 100755 index 0000000..983f6fe --- /dev/null +++ b/your_shell.sh @@ -0,0 +1,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 -o "$tmpFile" ./cmd/myshell ) + +exec "$tmpFile" "$@" |