4 lines
154 B
Bash
4 lines
154 B
Bash
#!/bin/bash
|
|
# Get the directory where the script is located
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
python3 "$SCRIPT_DIR/main.py" "$@"
|