From 0e332c0c1221857f3ce96490f073c1c88bcbd367 Mon Sep 17 00:00:00 2001 From: Jordan Ellis <5522128+dOrgJelli@users.noreply.github.com> Date: Mon, 27 Nov 2023 11:29:32 -0500 Subject: [PATCH] feat: add evo.ninja (setup only) (#6379) --- .gitignore | 6 +++++- autogpts/evo.ninja/setup | 17 +++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100755 autogpts/evo.ninja/setup diff --git a/.gitignore b/.gitignore index dcfbc4df..c4f86e95 100644 --- a/.gitignore +++ b/.gitignore @@ -172,4 +172,8 @@ pri* # ignore ig* .github_access_token -arena/TestAgent.json \ No newline at end of file +arena/TestAgent.json + +# evo.ninja +autogpts/evo.ninja/* +!autogpts/evo.ninja/setup diff --git a/autogpts/evo.ninja/setup b/autogpts/evo.ninja/setup new file mode 100755 index 00000000..3d1c2f70 --- /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."