Bundler update
bundler scripts pointed to testing branch
frdel committed
Oct 14, 2024 at 20:23 UTC
be437d0326b72356b5d67a9dba78d03b7267a28c
2 files changed
+4
-4
bundle/macos_bundle.sh
+2
-2
@@ -38,8 +38,8 @@ if [ -d "agent-zero" ]; then
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
41
+echo "Cloning the repository (testing branch)..."
42
+git clone --branch testing https://github.com/frdel/agent-zero agent-zero
43
if [ $? -ne 0 ]; then
44
echo "Error cloning the repository."
45
exit 1
bundle/windows_bundle.bat
+2
-2
@@ -70,8 +70,8 @@ if exist agent-zero (
70
)
71
)
72
73
-:: 4. Clone the repository (development branch)
74
-git clone --branch development https://github.com/frdel/agent-zero agent-zero
73
+:: 4. Clone the repository (testing branch)
74
+git clone --branch testing https://github.com/frdel/agent-zero agent-zero
75
if %ERRORLEVEL% neq 0 (
76
echo Error cloning the repository
77
pause