Spaces:
No application file
No application file
File size: 376 Bytes
3883c60 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/usr/bin/env bash
# Unable to check the testing here. As i do not have a linux system, and not enough storage on C: to install wsl
if which python3.10 >/dev/null; then
python3.10 main.py "$@"
else
echo 'WARNING: python3.10 command was not found, attempting with python command, this could fail.'
python main.py "$@"
fi
read -n1 -r -p "Press any key to exit..." key
|