From 2dffc39e61c952568db823201c12af5e55900f4d Mon Sep 17 00:00:00 2001 From: "Artur M. Wolff" Date: Thu, 24 Sep 2020 23:07:15 +0200 Subject: [PATCH] Skip the `webapp/package.json` if it is missing (#130) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d12505e..7872bff 100644 --- a/Makefile +++ b/Makefile @@ -76,7 +76,7 @@ endif endif ## Ensures NPM dependencies are installed without having to run this all the time. -webapp/node_modules: webapp/package.json +webapp/node_modules: $(wildcard webapp/package.json) ifneq ($(HAS_WEBAPP),) cd webapp && $(NPM) install touch $@