From c6c5f8c5afcb0bd2e4fedfb08b7b29ab9bdbe165 Mon Sep 17 00:00:00 2001 From: Magnus Henoch Date: Mon, 22 Sep 2008 17:52:50 +0000 Subject: [PATCH] Add upload script --- upload.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 upload.sh diff --git a/upload.sh b/upload.sh new file mode 100755 index 0000000..647fa31 --- /dev/null +++ b/upload.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +# In ~/.ssh/config, include the following +# +# Host emacs-jabber-www +# HostName web.sourceforge.net +# User SFUSERNAME,emacs-jabber + +if [ ! -f index.muse ]; then + echo "Error: must be run in www checkout root" 1>&2 + exit 1 +fi + +rsync -v html/*.html emacs-jabber-www:htdocs/new/ -- 2.11.4.GIT