aboutsummaryrefslogtreecommitdiff
path: root/autogpts/evo.ninja/setup
diff options
context:
space:
mode:
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."