mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-17 05:54:26 +01:00
feat: add evo.ninja (setup only) (#6379)
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -173,3 +173,7 @@ pri*
|
||||
ig*
|
||||
.github_access_token
|
||||
arena/TestAgent.json
|
||||
|
||||
# evo.ninja
|
||||
autogpts/evo.ninja/*
|
||||
!autogpts/evo.ninja/setup
|
||||
|
||||
17
autogpts/evo.ninja/setup
Executable file
17
autogpts/evo.ninja/setup
Executable file
@@ -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."
|
||||
Reference in New Issue
Block a user