Merge pull request #3818 from alphagov/fix-typo

Fix typo in Makefile (not running 'npm install')
This commit is contained in:
David McDonald
2021-03-03 15:16:30 +00:00
committed by GitHub

View File

@@ -25,7 +25,7 @@ VIRTUALENV_ROOT := $(shell [ -z $$VIRTUAL_ENV ] && echo $$(pwd)/venv || echo $$V
.PHONY: bootstrap
bootstrap: generate-version-file
pip3 install -r requirements_for_test.txt
npm install && npm rebuild node-sass npm run build
npm install && npm rebuild node-sass && npm run build
.PHONY: run-flask
run-flask: