1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2024-12-25 00:11:36 +01:00

Makefile: Fix spelling mistakes in echo statements

This commit is contained in:
Aleksandr Gumroian 2022-02-21 16:07:45 +01:00
parent ca335ab3a5
commit 894d92b683
No known key found for this signature in database
GPG Key ID: 9E77849C64F0A733

View File

@ -16,15 +16,15 @@ VENV_BIN=$(shell pwd)/$(VENV_NAME)/bin
.PHONY: all .PHONY: all
all: all:
@echo "make install-js" @echo "make install-js"
@echo " Install dependencies" @echo " Install npm dependencies."
@echo "make watch-js" @echo "make lint"
@echo " Compile JS in watch mode." @echo " Run linter on the project."
@echo "make build-js" @echo "make test"
@echo " Compile JS." @echo " Run tests on the project."
@echo "make lint-js" @echo "make test-js-watch"
@echo " Run linter" @echo " Run tests on the project in watch mode."
@echo "make test-js" @echo "make test-js-update-snapshots"
@echo " Run tests" @echo " Update snapshots."
@echo "make create-messages" @echo "make create-messages"
@echo " Create locale messages (.pot)." @echo " Create locale messages (.pot)."
@echo "make update-messages" @echo "make update-messages"