aboutsummaryrefslogtreecommitdiff
path: root/autogpts/evo.ninja/setup
diff options
context:
space:
mode:
authorGravatar Reinier van der Leer <pwuts@agpt.co> 2024-01-29 17:23:47 +0100
committerGravatar Reinier van der Leer <pwuts@agpt.co> 2024-01-29 17:23:47 +0100
commit7ffc374bb58376317f249c929e5846e57b0da543 (patch)
tree49c4f6ced963ce22da38a6e1c308def0ec8ef180 /autogpts/evo.ninja/setup
parentfix: Fix missing categories in data_types.py (diff)
parentfix(agent/json_utils): Make `extract_dict_from_response` more robust (diff)
downloadAuto-GPT-bringing-in-the-benchmark.tar.gz
Auto-GPT-bringing-in-the-benchmark.tar.bz2
Auto-GPT-bringing-in-the-benchmark.zip
Merge branch 'master' into bringing-in-the-benchmarkbringing-in-the-benchmark
Diffstat (limited to 'autogpts/evo.ninja/setup')
-rwxr-xr-xautogpts/evo.ninja/setup17
1 files changed, 17 insertions, 0 deletions
diff --git a/autogpts/evo.ninja/setup b/autogpts/evo.ninja/setup
new file mode 100755
index 000000000..3d1c2f708
--- /dev/null
+++ b/autogpts/evo.ninja/setup
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+# Ensure all commands are run within this script's directory
+SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
+cd "$SCRIPT_DIR"
+
+# Clone the repo and checkout the release branch
+REPO="https://github.com/polywrap/evo.ninja"
+BRANCH="release/autogpt"
+
+echo "Cloning evo.ninja..."
+git init
+git remote add origin $REPO
+git pull
+git checkout $BRANCH
+
+echo "Setup successfully."