Skip to content

Commit ebfd6df

Browse files
authored
Fix llm-tests target (#133)
minor fix: makefile does not accept bash syntax Signed-off-by: Jack Luar <[email protected]>
1 parent d262d3a commit ebfd6df

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

evaluation/Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ clean:
2828

2929
.PHONY: llm-tests
3030
llm-tests: clean
31-
@. .venv/bin/activate && \
31+
@bash -c '\
32+
. .venv/bin/activate && \
3233
cd auto_evaluation && \
3334
./llm_tests.sh 2>&1 | tee llm_tests_output.txt; \
34-
exit $${PIPESTATUS[0]}
35+
exit $${PIPESTATUS[0]}'

0 commit comments

Comments
 (0)