File size: 213 Bytes
072ab29 | 1 2 3 4 5 | #!/usr/bin/env bash
# Thin wrapper so the agent can run `bash /app/submit.sh` (or just `submit.sh`)
# without thinking about Python. Forwards any args (e.g. an alt solution path).
exec python3 /app/submit.py "$@"
|