Skip to content

Commit fda0972

Browse files
committed
fixes; now it runs
1 parent 7757863 commit fda0972

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

evals/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ RUN echo 'source $HOME/.cargo/env' >> $HOME/.bashrc
3636
WORKDIR /home/vscode
3737
USER vscode
3838

39-
# Copy exercises
40-
RUN git clone https://github.com/RooCodeInc/Roo-Code-Evals.git exercises
39+
# Copy evals
40+
RUN git clone https://github.com/RooCodeInc/Roo-Code-Evals.git evals
4141

42-
# Prepare exercises
43-
WORKDIR /home/vscode/exercises/python
42+
# Prepare evals
43+
WORKDIR /home/vscode/evals/python
4444
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
4545
RUN /home/vscode/.local/bin/uv sync
4646

evals/apps/cli/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ if (!fs.existsSync(extensionDevelopmentPath)) {
550550

551551
if (!fs.existsSync(exercisesPath)) {
552552
console.error(
553-
`Exercises path does not exist. Please run "git clone https://github.com/RooCodeInc/Roo-Code-Evals.git exercises".`,
553+
`Exercises do not exist at ${exercisesPath}. Please run "git clone https://github.com/RooCodeInc/Roo-Code-Evals.git evals".`,
554554
)
555555
process.exit(1)
556556
}

0 commit comments

Comments
 (0)