From bdee795f564be308d49e2b20fb5efee80000abb1 Mon Sep 17 00:00:00 2001 From: Ryan Ahearn Date: Tue, 9 Aug 2022 09:23:47 -0400 Subject: [PATCH] Switch first nvm source to --no-use instead of --install --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 637c1414b..510df60f3 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ NVMSH := $(shell [ -f "$(HOME)/.nvm/nvm.sh" ] && echo "$(HOME)/.nvm/nvm.sh" || e .PHONY: bootstrap bootstrap: generate-version-file ## Set up everything to run the app pip3 install -r requirements_for_test.txt - source $(NVMSH) --install && npm ci --no-audit + source $(NVMSH) --no-use && nvm install && npm ci --no-audit source $(NVMSH) && npm run build .PHONY: watch-frontend