Files

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" "$@"