summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2006-10-06 18:15:41 +0000
committerDavid Cantrell <dcantrell@redhat.com>2006-10-06 18:15:41 +0000
commit4b9f246731f061a61e63e3af2eddf4d136f9775a (patch)
tree6075ef1427136acaa535ed177be299abd8f77e6f /scripts
parent1733f680f22a6f15ad0ba86a3849cf9e6280c351 (diff)
downloadparted-4b9f246731f061a61e63e3af2eddf4d136f9775a.tar.gz
* scripts/release/tarball_upload.sh: Since v1.0 directive files will
no longer be supported by ftp-upload.gnu.org after 2006, modified the upload script to use the v1.1 format. git-svn-id: svn://svn.debian.org/svn/parted/upstream/trunk@839 2d424fd7-7fe2-0310-af74-8bc65edeb173
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/release/tarball_upload.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/release/tarball_upload.sh b/scripts/release/tarball_upload.sh
index 0737935..abd39bd 100755
--- a/scripts/release/tarball_upload.sh
+++ b/scripts/release/tarball_upload.sh
@@ -134,7 +134,8 @@ echo -e "\t-> success"
DIRECTIVE=$TARBALL.directive
message "* creating and clearsigning directive file to $DIRECTIVE.asc"
-echo -n 'Directory: parted' > $DIRECTIVE
+echo "version: $VERSION" > $DIRECTIVE
+echo "directory: parted" >> $DIRECTIVE
if [ $? -ne 0 ]; then
kill $GPGAPID; echo creation FAILED; exit
fi