mirror of
https://github.com/openwrt-xiaomi/xmir-patcher.git
synced 2026-09-22 22:57:55 +03:00
13 lines
151 B
Bash
Executable File
13 lines
151 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
python3 -m venv venv
|
|
|
|
source ./venv/bin/activate
|
|
|
|
python3 -m pip install -r requirements.txt
|
|
|
|
python3 menu.py "$1"
|
|
|
|
exit 0 |