Skip to content

Commit b1caec4

Browse files
committed
Explicitly exclude node_modules from built site
1 parent 1ac972c commit b1caec4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ deploy: site
1414
git ls-files * | xargs git rm
1515
rmdir --ignore-fail-on-non-empty --parents */
1616
mv site/* .
17+
rm -rf res/jshint/node_modules
1718
echo "jshint.com" > CNAME
18-
git add .
19+
git add --all .
1920
git commit -m "Build site."
2021
git push --force $(DEPLOY_REMOTE) $(DEPLOY_BRANCH)
2122
git checkout -

0 commit comments

Comments
 (0)