summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rwxr-xr-xscripts/release/tarball_upload.sh3
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a4c915b..bc25e27 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,11 @@ See libparted/ChangeLog and parted/ChangeLog.
==============================================================================
2006-10-06 David Cantrell <dcantrell@redhat.com>
+ * 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.
+
+2006-10-06 David Cantrell <dcantrell@redhat.com>
* scripts/release/tarball_upload.sh: Support the -a (or --alpha) switch
on the tarball upload script. This switch will upload the release to
alpha.gnu.org rather than ftp.gnu.org.
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