9 lines
135 B
Bash
Executable file
9 lines
135 B
Bash
Executable file
#!/bin/sh -eu
|
|
|
|
cd "$RUN_DIR"
|
|
|
|
[ -z "${DEBUG:-}" ] || set -x
|
|
|
|
python_bin=$(uv run command -v python)
|
|
|
|
exec "$python_bin" -m unwind "$@"
|