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