We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, The always-available devserver-global command is not listed as a phony target in the Makefile generated by the quickstart.
devserver-global
Also, only by taking a fast look to that Makefile template, it seems that sftp_upload is missing too (it's not added to the upload list).
sftp_upload
upload
Regards.
The text was updated successfully, but these errors were encountered:
Note that multiple .PHONY definitions are cumulative, so you could to have something as the following:
.PHONY: html html: "$(PELICAN)" "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)" $(PELICANOPTS) .PHONY: clean clean: [ ! -d "$(OUTPUTDIR)" ] || rm -rf "$(OUTPUTDIR)" .PHONY: regenerate regenerate: "$(PELICAN)" -r "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)" $(PELICANOPTS)
It could make it less likely to forget adding a target to .PHONY in the future.
Sorry, something went wrong.
Add devserver-global Makefile target to .phony, fixes getpelican#3065
380b17f
418a919
eeb4a04
3805bea
Successfully merging a pull request may close this issue.
Issue
Hi,
The always-available
devserver-global
command is not listed as a phony target in the Makefile generated by the quickstart.Also, only by taking a fast look to that Makefile template, it seems that
sftp_upload
is missing too (it's not added to theupload
list).Regards.
The text was updated successfully, but these errors were encountered: