Bundlers update

testing branch, final touches

frdel committed Oct 18, 2024 at 13:24 UTC 56a43510d69991a7debec5646e4a78de898c4ece
2 files changed +6 -5
bundle/macos_bundle.sh
+3 -3
@@ -37,9 +37,9 @@ if [ -d "agent-zero-git" ]; then
37 fi
38 fi
39
40 -# 4. Clone the repository (development branch)
41 -echo "Cloning the repository (development branch)..."
42 -git clone --branch development https://github.com/frdel/agent-zero agent-zero-git
40 +# 4. Clone the repository (testing branch)
41 +echo "Cloning the repository (testing branch)..."
42 +git clone --branch testing https://github.com/frdel/agent-zero agent-zero-git
43 if [ $? -ne 0 ]; then
44 echo "Error cloning the repository."
45 exit 1
bundle/windows_bundle.bat
+3 -2
@@ -70,8 +70,9 @@ if exist agent-zero-git (
70 )
71 )
72
73 -:: 4. Clone the repository (development branch)
74 -git clone --branch development https://github.com/frdel/agent-zero agent-zero-git
73 +:: 4. Clone the repository (testing branch)
74 +echo Cloning the repository (testing branch)...
75 +git clone --branch testing https://github.com/frdel/agent-zero agent-zero-git
76 if %ERRORLEVEL% neq 0 (
77 echo Error cloning the repository
78 pause