aboutsummaryrefslogtreecommitdiff
path: root/autogpts/evo.ninja/setup
blob: 3d1c2f708873216158d6c234560a6d1d3981bfbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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."