run.sh (245B)
1 #!/bin/sh 2 # 3 # This script is used to run your program on CodeCrafters 4 # 5 # This runs after .codecrafters/compile.sh 6 # 7 # Learn more: https://codecrafters.io/program-interface 8 9 # Exit early if any commands fail 10 set -e 11 12 exec /tmp/shell-target "$@"