5 lines
167 B
Bash
5 lines
167 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# Shell wrapper for launch_trolls.py
|
||
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||
|
|
exec python3 "${SCRIPT_DIR}/launch_trolls.py" "$@"
|