Merge pull request #3 from v-kamerdinerov/main

Add linux/mac os support
This commit is contained in:
Oleg S
2023-03-22 11:58:10 +03:00
committed by GitHub
2 changed files with 25 additions and 0 deletions
+12
View File
@@ -1,2 +1,14 @@
# XMiR-Patcher
Firmware patcher for Xiaomi routers
## Usage
### Windows
* Run `run.bat`
### Linux / Mac OS
* Install python 3.8, openssl
* Run `run.sh`
Executable
+13
View File
@@ -0,0 +1,13 @@
#!/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