import GuJumpgate snapshot from GitHub

This commit is contained in:
2026-05-20 20:33:51 +08:00
commit f8903dcd14
335 changed files with 179790 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
cd "$SCRIPT_DIR"
if command -v python3 >/dev/null 2>&1; then
exec python3 scripts/hotmail_helper.py "$@"
fi
if command -v python >/dev/null 2>&1; then
exec python scripts/hotmail_helper.py "$@"
fi
echo "Python 3 not found. Please install Python 3.10+ and try again."
read -r -p "Press Enter to exit..."