mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-09 17:15:37 +08:00
8 lines
182 B
Bash
Executable File
8 lines
182 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
|
|
DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
|
|
set +u
|
|
source "$DIR/launch_env.sh"
|
|
exec python3 "$DIR/scripts/model_compiler.py" "$@"
|