bug: fix typo in makefile (#2474)

fix typo in makefile: `.PHONE` -> `.PHONY`
This commit is contained in:
John 2024-01-30 12:12:35 -06:00 committed by GitHub
parent 007fc45739
commit 5adc04ac27
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,7 +36,7 @@ install-huggingface:
python3 -m pip install pip==${PIP_VERSION}
python3 -m pip install -r requirements/huggingface.txt
.PHONE: install-nltk-models
.PHONY: install-nltk-models
install-nltk-models:
python -c "import nltk; nltk.download('punkt')"
python -c "import nltk; nltk.download('averaged_perceptron_tagger')"