From 36d0b1604031a6e829f214d68ebb14b3c87c63e0 Mon Sep 17 00:00:00 2001 From: thehack904 <35552907+thehack904@users.noreply.github.com> Date: Sun, 19 Oct 2025 16:58:38 -0500 Subject: [PATCH] v4.0.0 Unified Installers Update --- retroiptv_linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retroiptv_linux.sh b/retroiptv_linux.sh index bf768d7..cd38282 100644 --- a/retroiptv_linux.sh +++ b/retroiptv_linux.sh @@ -124,7 +124,7 @@ ensure_user(){ clone_or_stage_project(){ mkdir -p "$APP_DIR"; chown -R "$APP_USER":"$APP_USER" "$APP_DIR" TMP="/tmp/retroiptvguide"; rm -rf "$TMP" - git clone --depth 1 -b dev https://github.com/thehack904/RetroIPTVGuide.git "$TMP" + git clone --depth 1 -b main https://github.com/thehack904/RetroIPTVGuide.git "$TMP" rsync -a --delete --exclude 'venv' "$TMP/" "$APP_DIR/" chown -R "$APP_USER":"$APP_USER" "$APP_DIR" }