Files
Auto-GPT/autogpts/evo.ninja/setup
2023-11-27 17:29:32 +01:00

18 lines
411 B
Bash
Executable File

#!/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."