From 78a5547f698ccdd238c9dc00dca9c729c6c72c27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Thu, 11 Aug 2005 08:57:52 +0000 Subject: [PATCH] Print out the three last commands that is needed to make a release. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@15871 ec53bebd-3082-4978-b11e-865c3cabbd6b --- fix-export | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/fix-export b/fix-export index 9427bcdba..88bb221b3 100755 --- a/fix-export +++ b/fix-export @@ -1,10 +1,11 @@ #! /bin/sh # $Id$ -echo "fixing distribution in $1..." +distdir="$1" +echo "fixing distribution in $distdir..." -test -d "$1" || { echo not a dir in \$1 ; exit 1 ; } -cd $1 +test -d "$distdir" || { echo not a dir in \$distdir ; exit 1 ; } +cd $distdir if test "$DATEDVERSION"; then ed -s configure.in << END @@ -80,3 +81,7 @@ rm fix-export make-release make-release.el find . -name .cvsignore -print | xargs rm find . -name .__afs\* -print | xargs rm rm -fr autom4te*.cache + +echo "tar cf - ${distdir} \| gzip -9 > ${distdir}.tar.gz" +echo "gpg -ba -u 0x45D901D8 ${distdir}.tar.gz" +