[nautilus-actions] Automatically installs manuals on the website when releasing a new stable version



commit 16e8c55ea8c50b0d659272f77678d7cc80072c23
Author: Pierre Wieser <pwieser trychlos org>
Date:   Mon Dec 12 05:57:29 2011 +0100

    Automatically installs manuals on the website when releasing a new stable version

 ChangeLog                |    5 +++++
 tools/release-tarball.sh |    4 +++-
 2 files changed, 8 insertions(+), 1 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index cde13d5..e38e726 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-12-12 Pierre Wieser <pwieser trychlos org>
+
+	* tools/release-tarball.sh: Automatically installs manuals on the website
+	when releasing a new stable version.
+
 2011-12-09 Pierre Wieser <pwieser trychlos org>
 
 	* tools/release-tarball.sh: Take _build builddir into account.
diff --git a/tools/release-tarball.sh b/tools/release-tarball.sh
index 6bcb529..6b7bf8f 100755
--- a/tools/release-tarball.sh
+++ b/tools/release-tarball.sh
@@ -400,13 +400,15 @@ command "ssh maintainer kimsufi 'sha1sum ${destdir}/${opt_tarname} > ${destdir}/
 if [ "${opt_stable}" = "yes" ]; then
 	msg "updating kimsufi:${destdir}/latest.tar.gz"
 	command "ssh maintainer kimsufi 'cd ${destdir}; rm -f latest.tar.gz; ln -s ${opt_tarname} latest.tar.gz; ls -l latest.tar.gz ${opt_tarname}*'"
+	msg "installing manuals on kimsufi"
+	command "ssh maintainer kimsufi 'tools/kimsufi-install-manuals.sh -nodummy'"
 fi
 
 # tagging git
 msg "tagging git"
 tag="$(echo ${product}-${version} | tr '[:lower:]' '[:upper:]' | sed -e 's/-/_/g' -e 's/\./_/g')"
 msg="Releasing $(grep PACKAGE_NAME ${builddir}/Makefile | awk '{ print $3 }') ${version}"
-msg "git tag -s ${tag} -m ${msg}"
+msg "git tag -s '${tag}' -m '${msg}'"
 command "git tag -s '${tag}' -m '${msg}'"
 command "git pull --rebase && git push && git push --tags"
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]