From 56a43510d69991a7debec5646e4a78de898c4ece Mon Sep 17 00:00:00 2001 From: frdel <38891707+frdel@users.noreply.github.com> Date: Fri, 18 Oct 2024 13:24:34 +0200 Subject: [PATCH] Bundlers update testing branch, final touches --- bundle/macos_bundle.sh | 6 +++--- bundle/windows_bundle.bat | 5 +++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/bundle/macos_bundle.sh b/bundle/macos_bundle.sh index 71b6467b0..77695047b 100755 --- a/bundle/macos_bundle.sh +++ b/bundle/macos_bundle.sh @@ -37,9 +37,9 @@ if [ -d "agent-zero-git" ]; then fi fi -# 4. Clone the repository (development branch) -echo "Cloning the repository (development branch)..." -git clone --branch development https://github.com/frdel/agent-zero agent-zero-git +# 4. Clone the repository (testing branch) +echo "Cloning the repository (testing branch)..." +git clone --branch testing https://github.com/frdel/agent-zero agent-zero-git if [ $? -ne 0 ]; then echo "Error cloning the repository." exit 1 diff --git a/bundle/windows_bundle.bat b/bundle/windows_bundle.bat index d81ac81d4..2308d884d 100644 --- a/bundle/windows_bundle.bat +++ b/bundle/windows_bundle.bat @@ -70,8 +70,9 @@ if exist agent-zero-git ( ) ) -:: 4. Clone the repository (development branch) -git clone --branch development https://github.com/frdel/agent-zero agent-zero-git +:: 4. Clone the repository (testing branch) +echo Cloning the repository (testing branch)... +git clone --branch testing https://github.com/frdel/agent-zero agent-zero-git if %ERRORLEVEL% neq 0 ( echo Error cloning the repository pause