Skip to content

Commit

Permalink
makefile: fix docs target typo
Browse files Browse the repository at this point in the history
A few references to the `doc` target were not updated to `docs` in
npm#274 and resulted in `make release`
not building the docs.
  • Loading branch information
richardlau committed Dec 2, 2019
1 parent b829d62 commit 0327b82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -129,11 +129,11 @@ publish: gitclean ls-ok link docs-clean docs
git push origin --tags &&\
node bin/npm-cli.js publish --tag=$(PUBLISHTAG)

release: gitclean ls-ok markedclean marked-manclean docs-clean doc
release: gitclean ls-ok markedclean marked-manclean docs-clean docs
node bin/npm-cli.js prune --production --no-save
@bash scripts/release.sh

sandwich:
@[ $$(whoami) = "root" ] && (echo "ok"; echo "ham" > sandwich) || (echo "make it yourself" && exit 13)

.PHONY: all latest install dev link doc clean uninstall test man docs-clean docclean release ls-ok realclean
.PHONY: all latest install dev link docs clean uninstall test man docs-clean docclean release ls-ok realclean

0 comments on commit 0327b82

Please sign in to comment.