diff options
author | Julien Dessaux | 2022-10-25 18:35:45 +0200 |
---|---|---|
committer | Julien Dessaux | 2022-10-25 18:35:45 +0200 |
commit | 877f4280f0f24ac499bdca33f8aa41d53bf2ad9c (patch) | |
tree | 4baefb7d3c7a21215b4c78cd8d2bafa168ad2b85 /GNUmakefile | |
parent | Added favicon, split view in multiple parts (diff) | |
download | jeux-de-mots-877f4280f0f24ac499bdca33f8aa41d53bf2ad9c.tar.gz jeux-de-mots-877f4280f0f24ac499bdca33f8aa41d53bf2ad9c.tar.bz2 jeux-de-mots-877f4280f0f24ac499bdca33f8aa41d53bf2ad9c.zip |
Fixed makefile
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 6b50894..c245c63 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -16,7 +16,7 @@ serve: ## make serve # run a self reloading nodejs web server .PHONY: run run: ## make run # run a production nodejs web server - node main.js + NODE_ENV=production node main.js help: @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' |