Skip to content

Commit

Permalink
Fixing condition
Browse files Browse the repository at this point in the history
  • Loading branch information
KanBen86 committed Dec 3, 2023
1 parent bfa7b88 commit 671c0b4
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 @@ -12,7 +12,7 @@ RUN apk add openjdk11-jre-headless;
RUN mkdir /jars

RUN cd /jars; wget https://nlp.stanford.edu/software/stanford-corenlp-4.2.2.zip; \
if [["$?"!="0"]]; \
if [["$?" -ne "0"]]; \
then rm stanford-corenlp-latest.zip; \
else rm /jars/stanford-corenlp-4.2.2/; \
fi; exit 0;
Expand Down

0 comments on commit 671c0b4

Please sign in to comment.