This commit is contained in:
2025-10-11 18:39:28 -03:00
parent b29836ee79
commit df24c3876e
4 changed files with 5 additions and 5 deletions

View File

@@ -12,7 +12,7 @@
**Step-by-step:** **Step-by-step:**
```bash ```bash
wget -qO- https://git.dr2.site/penguinehis/DragonX-SSH-Proxy/raw/branch/alpha/install.sh | bash wget -qO- https://git.dr2.site/penguinehis/DragonX-SSH-Proxy/raw/branch/main/install.sh | bash
``` ```
To acess the menu: To acess the menu:
@@ -28,7 +28,7 @@ To acess the menu:
**Passo a passo:** **Passo a passo:**
```bash ```bash
wget -qO- https://git.dr2.site/penguinehis/DragonX-SSH-Proxy/raw/branch/alpha/install.sh | bash wget -qO- https://git.dr2.site/penguinehis/DragonX-SSH-Proxy/raw/branch/main/install.sh | bash
``` ```
Para abrir o menu: Para abrir o menu:

Binary file not shown.

Binary file not shown.

View File

@@ -18,11 +18,11 @@ fi
if [ -d "$INSTALL_DIR/.git" ]; then if [ -d "$INSTALL_DIR/.git" ]; then
echo "Existing repo detected. Pulling latest..." echo "Existing repo detected. Pulling latest..."
git -C "$INSTALL_DIR" fetch origin git -C "$INSTALL_DIR" fetch origin
git -C "$INSTALL_DIR" checkout alpha git -C "$INSTALL_DIR" checkout main
git -C "$INSTALL_DIR" pull --rebase --autostash origin alpha || true git -C "$INSTALL_DIR" pull --rebase --autostash origin main || true
else else
rm -rf "$INSTALL_DIR" rm -rf "$INSTALL_DIR"
git clone --depth 1 --branch alpha "$REPO_URL" "$INSTALL_DIR" git clone --depth 1 --branch main "$REPO_URL" "$INSTALL_DIR"
fi fi
# Ensure executables are present & executable # Ensure executables are present & executable