mirror of
https://github.com/WSA-Installer/wsa-webdav.git
synced 2026-07-29 11:24:16 -07:00
18 lines
501 B
Bash
18 lines
501 B
Bash
#!/bin/bash
|
|
# ============================================
|
|
# WSA WebDAV - One-Click APK Builder (CLI)
|
|
# ============================================
|
|
# Run to build. No Android Studio.
|
|
# ============================================
|
|
|
|
set -e
|
|
DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
|
|
if ! command -v python3 &>/dev/null && ! command -v python &>/dev/null; then
|
|
echo "[x] Python not found. Install Python 3.8+"
|
|
exit 1
|
|
fi
|
|
|
|
PY=$(command -v python3 || command -v python)
|
|
$PY "$DIR/builder/build.py" "$@"
|