-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
#!/bin/bash | ||
wget https://raw.githubusercontent.com/weskerty/test/main/Termux/update.sh -O ~/update.sh | ||
wget https://raw.githubusercontent.com/weskerty/test/main/Termux/.bashrc -O ~/.bashrc | ||
proot-distro login archlinux -- bash -c "pacman -Syu wget curl nodejs nano npm git ffmpeg python ; git clone https://github.com/BrunoSobrino/TheMystic-Bot-MD.git mystic ; cd mystic ; npm install ; nano config.js && npm start ." | ||
proot-distro login archlinux -- bash -c "pacman -Syu wget curl nodejs nano npm git ffmpeg python --noconfirm && \ | ||
wget https://raw.githubusercontent.com/weskerty/test/main/Termux/update.sh -O ~/update.sh && \ | ||
chmod 777 ~/update.sh && \ | ||
git clone https://github.com/BrunoSobrino/TheMystic-Bot-MD.git mystic && \ | ||
cd mystic && \ | ||
npm install && \ | ||
nano config.js && \ | ||
npm start" | ||
|