Skip to content

Commit

Permalink
Minor makefile change
Browse files Browse the repository at this point in the history
I think the `-rm -rf` in the Makefile is a typo, so I changed that.
Also, I've found that it's good to refresh the package-lock.json at this
step - that helps keep it up to date. If this causes any problems
for you though, of course remove it.
  • Loading branch information
nikolas committed Nov 26, 2018
1 parent b402de6 commit 47f3ccb
Show file tree
Hide file tree
Showing 2 changed files with 3,459 additions and 2,756 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ JS_SENTINAL ?= $(NODE_MODULES)/sentinal
include *.mk

$(JS_SENTINAL): package.json
-rm -rf $(NODE_MODULES)
rm -rf $(NODE_MODULES) package-lock.json
npm install
touch $(JS_SENTINAL)

Expand Down
Loading

0 comments on commit 47f3ccb

Please sign in to comment.