Fix git clone in evals setup script (#4418)

This commit is contained in:
Chris Estreich 2025-06-06 08:47:43 -07:00 committed by GitHub
parent 2a92312b85
commit f61b4e46a8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View file

@ -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",

View file

@ -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... "