Skip to content
This repository has been archived by the owner on Dec 16, 2022. It is now read-only.

Commit

Permalink
fix Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
epwalsh committed Jun 1, 2020
1 parent a7265c0 commit 8c9421d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile
Expand Up @@ -19,13 +19,13 @@ DOCKER_RUN_CMD = docker run --rm \
-v $$HOME/nltk_data:/root/nltk_data

ifeq ($(shell uname),Darwin)
ifeq ($(shell which gsed),)
$(error Please install GNU sed with 'brew install gnu-sed')
else
SED = gsed
endif
ifeq ($(shell which gsed),)
$(error Please install GNU sed with 'brew install gnu-sed')
else
SED = sed
SED = gsed
endif
else
SED = sed
endif

.PHONY : version
Expand Down

0 comments on commit 8c9421d

Please sign in to comment.