Compare commits
3 Commits
a7975715a9
...
beta
| Author | SHA1 | Date | |
|---|---|---|---|
| 9c05de766b | |||
| 0a22fe6b0b | |||
| 5ed53d33b9 |
@@ -6,7 +6,7 @@
|
||||
**Step-by-step:**
|
||||
|
||||
```bash
|
||||
wget -qO- https://git.dr2.site/penguinehis/DragonX-SSH-Proxy/raw/branch/main/install.sh | bash
|
||||
wget -qO- https://git.dr2.site/penguinehis/DragonX-SSH-Proxy/raw/branch/beta/install.sh | bash
|
||||
```
|
||||
|
||||
To acess the menu:
|
||||
@@ -22,7 +22,7 @@ To acess the menu:
|
||||
**Passo a passo:**
|
||||
|
||||
```bash
|
||||
wget -qO- https://git.dr2.site/penguinehis/DragonX-SSH-Proxy/raw/branch/main/install.sh | bash
|
||||
wget -qO- https://git.dr2.site/penguinehis/DragonX-SSH-Proxy/raw/branch/beta/install.sh | bash
|
||||
```
|
||||
|
||||
Para abrir o menu:
|
||||
|
||||
BIN
dragon_go-ARM
BIN
dragon_go-ARM
Binary file not shown.
BIN
dragon_go-x86
BIN
dragon_go-x86
Binary file not shown.
@@ -4,7 +4,7 @@
|
||||
set -e
|
||||
|
||||
INSTALL_DIR="$HOME/DragonX"
|
||||
REPO_URL="https://git.dr2.site/penguinehis/DragonX-SSH-Proxy"
|
||||
REPO_URL="https://git.dr2.site/penguinehis/DragonX-SSH-Proxy.git"
|
||||
|
||||
echo "Installing DragonX into $INSTALL_DIR..."
|
||||
|
||||
@@ -17,10 +17,12 @@ fi
|
||||
# Fetch code
|
||||
if [ -d "$INSTALL_DIR/.git" ]; then
|
||||
echo "Existing repo detected. Pulling latest..."
|
||||
git -C "$INSTALL_DIR" pull --rebase --autostash || true
|
||||
git -C "$INSTALL_DIR" fetch origin
|
||||
git -C "$INSTALL_DIR" checkout beta
|
||||
git -C "$INSTALL_DIR" pull --rebase --autostash origin beta || true
|
||||
else
|
||||
rm -rf "$INSTALL_DIR"
|
||||
git clone --depth 1 "$REPO_URL" "$INSTALL_DIR"
|
||||
git clone --depth 1 --branch beta "$REPO_URL" "$INSTALL_DIR"
|
||||
fi
|
||||
|
||||
# Ensure executables are present & executable
|
||||
|
||||
Reference in New Issue
Block a user