4 lines
194 B
Bash
Executable File
4 lines
194 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Thin wrapper — delegates everything to launch-assistant.py in the same directory.
|
|
exec python3 "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")/launch-assistant.py" "$@"
|