Skip to content

Commit a9acf28

Browse files
committed
Fix git clone in evals setup script
1 parent 2a92312 commit a9acf28

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"clean": "turbo clean --log-order grouped --output-logs new-only && rimraf dist out bin .vite-port .turbo",
2222
"changeset:version": "cp CHANGELOG.md src/CHANGELOG.md && changeset version && cp -vf src/CHANGELOG.md .",
2323
"knip": "knip --include files",
24-
"update-contributors": "node scripts/update-contributors.js"
24+
"update-contributors": "node scripts/update-contributors.js",
25+
"evals": "docker compose -f packages/evals/docker-compose.yml --profile server --profile runner up --build --scale runner=0"
2526
},
2627
"devDependencies": {
2728
"@changesets/cli": "^2.27.10",

packages/evals/scripts/setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ echo "✅ Done"
336336

337337
if [[ ! -d "../../../evals" ]]; then
338338
echo -n "🔗 Cloning evals repository... "
339-
git clone https://github.com/RooCodeInc/Roo-Code-Evals.git evals ../../../evals || exit 1
339+
git clone https://github.com/RooCodeInc/Roo-Code-Evals.git ../../../evals || exit 1
340340
echo "✅ Done"
341341
else
342342
echo -n "🔄 Updating evals repository... "

0 commit comments

Comments
 (0)