mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Fix git clone in evals setup script (#4418)
This commit is contained in:
parent
2a92312b85
commit
f61b4e46a8
2 changed files with 3 additions and 2 deletions
|
|
@ -21,7 +21,8 @@
|
|||
"clean": "turbo clean --log-order grouped --output-logs new-only && rimraf dist out bin .vite-port .turbo",
|
||||
"changeset:version": "cp CHANGELOG.md src/CHANGELOG.md && changeset version && cp -vf src/CHANGELOG.md .",
|
||||
"knip": "knip --include files",
|
||||
"update-contributors": "node scripts/update-contributors.js"
|
||||
"update-contributors": "node scripts/update-contributors.js",
|
||||
"evals": "docker compose -f packages/evals/docker-compose.yml --profile server --profile runner up --build --scale runner=0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@changesets/cli": "^2.27.10",
|
||||
|
|
|
|||
|
|
@ -336,7 +336,7 @@ echo "✅ Done"
|
|||
|
||||
if [[ ! -d "../../../evals" ]]; then
|
||||
echo -n "🔗 Cloning evals repository... "
|
||||
git clone https://github.com/RooCodeInc/Roo-Code-Evals.git evals ../../../evals || exit 1
|
||||
git clone https://github.com/RooCodeInc/Roo-Code-Evals.git ../../../evals || exit 1
|
||||
echo "✅ Done"
|
||||
else
|
||||
echo -n "🔄 Updating evals repository... "
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue