Skip to content

Commit

Permalink
fix if/then typo in which-nltk test
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasohara committed Jan 15, 2024
1 parent dcd46b0 commit 55916eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ COPY ./requirements.txt $REQUIREMENTS
# NOTE: The workflow only handles requirements for the runner VM, not the docker container;
# Also, the results aren't cached to save space in the image.
RUN <<END_RUN
if [ "$(which nltk)" == "" ];
if [ "$(which nltk)" == "" ]; then
python -m pip install --verbose --no-cache-dir --requirement $REQUIREMENTS;
## TODO?
## # note: makes a second pass for failed installations, doing non-binary
Expand Down

0 comments on commit 55916eb

Please sign in to comment.