Skip to content

Commit

Permalink
fix(ci): use npm install instead of npm ci
Browse files Browse the repository at this point in the history
  • Loading branch information
prymitive committed May 10, 2021
1 parent 29d2a40 commit db73948
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ SHELL := env PATH=$(PATH) /bin/sh
.DEFAULT_GOAL := build/index.html

$(NODE_INSTALL): package.json package-lock.json
@if [ -e $(NODE_INSTALL) ]; then npm install ; else npm ci; fi
@if [ -e $(NODE_INSTALL) ]; then npm install ; else rm -fr node_modules && npm install; fi
touch $@

.PHONY: npm-fetch
Expand Down

0 comments on commit db73948

Please sign in to comment.