Mercurial > hg > Blog
changeset 6:d56669594036
remove obsolete upload methods
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Sat, 29 Jun 2013 17:59:04 +0200 |
parents | 48e0e2d8babd |
children | 7aab662406b0 |
files | Makefile |
diffstat | 1 files changed, 0 insertions(+), 12 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile Sat Jun 29 17:57:01 2013 +0200 +++ b/Makefile Sat Jun 29 17:59:04 2013 +0200 @@ -34,9 +34,6 @@ @echo ' make stopserver stop local server ' @echo ' ssh_upload upload the web site via SSH ' @echo ' rsync_upload upload the web site via rsync+ssh ' - @echo ' dropbox_upload upload the web site via Dropbox ' - @echo ' ftp_upload upload the web site via FTP ' - @echo ' s3_upload upload the web site via S3 ' @echo ' github upload the web site via gh-pages ' @echo ' ' @@ -72,15 +69,6 @@ rsync_upload: publish rsync -e "ssh -p $(SSH_PORT)" -P -rvz --delete $(OUTPUTDIR)/ $(SSH_USER)@$(SSH_HOST):$(SSH_TARGET_DIR) --cvs-exclude -dropbox_upload: publish - cp -r $(OUTPUTDIR)/* $(DROPBOX_DIR) - -ftp_upload: publish - lftp ftp://$(FTP_USER)@$(FTP_HOST) -e "mirror -R $(OUTPUTDIR) $(FTP_TARGET_DIR) ; quit" - -s3_upload: publish - s3cmd sync $(OUTPUTDIR)/ s3://$(S3_BUCKET) --acl-public --delete-removed - github: publish ghp-import $(OUTPUTDIR) git push origin gh-pages