mirror of
https://github.com/Snowy-Fluffy/zapret.installer.git
synced 2025-12-27 09:14:43 +03:00
14 lines
337 B
Bash
Executable File
14 lines
337 B
Bash
Executable File
#!/bin/bash
|
|
if [ ! -d /tmp/zapret.installer/ ]; then
|
|
cd /tmp || exit
|
|
git clone https://github.com/Snowy-Fluffy/zapret.installer.git
|
|
fi
|
|
|
|
if [[ -d /tmp/zapret.installer/ ]]; then
|
|
cd /tmp/zapret.installer/ && git pull
|
|
fi
|
|
cd /tmp/zapret.installer || exit
|
|
chmod +x zapret-control.sh
|
|
bash /tmp/zapret.installer/zapret-control.sh
|
|
|