mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-02-10 16:54:20 +01:00
18 lines
411 B
Bash
Executable File
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."
|