diff options
author | Wayne Davison <wayned@samba.org> | 2006-04-12 16:35:53 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2006-04-12 16:35:53 +0000 |
commit | e60bba3fbc61c979dbc7f215dd16d27537d52bde (patch) | |
tree | 414cc4a176fd7dc214fadeef97c47010f7fb262c /packaging | |
parent | e26cfccf1651a65046d9ed21d1bbde3914f416a2 (diff) | |
download | rsync-e60bba3fbc61c979dbc7f215dd16d27537d52bde.tar.gz rsync-e60bba3fbc61c979dbc7f215dd16d27537d52bde.tar.bz2 rsync-e60bba3fbc61c979dbc7f215dd16d27537d52bde.zip |
A few minor changes to some messages and a couple variable improvements.
Diffstat (limited to 'packaging')
-rwxr-xr-x | packaging/release-rsync | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/packaging/release-rsync b/packaging/release-rsync index 0f775118..65b50825 100755 --- a/packaging/release-rsync +++ b/packaging/release-rsync @@ -205,18 +205,21 @@ if (!/skip/i) { system "patches/verify-patches -pun -an"; } -my $tar_file = "$dest/rsync-$version.tar.gz"; -my $diff_file = "$dest/rsync-$lastversion-$version.diffs.gz"; +my $tar_name = "rsync-$version.tar.gz"; +my $diff_name = "rsync-$lastversion-$version.diffs.gz"; +my $tar_file = "$dest/$tar_name"; +my $diff_file = "$dest/$diff_name"; print $break, <<EOT; About to do the following in the samba-rsync-ftp dir: - move the old tar/diff files into the appropriate old-* dirs - - hard-link moved tar/diff files to old files on samba.org$skipping - - create release tar, "$tar_file" - - create release diffs, "$diff_file" + - copy the moved tar/diff files on samba.org$skipping + - create release tar, "$tar_name" + - create release diffs, "$diff_name" - update README, *NEWS, TODO, and cvs.log - update rsync*.html man pages + - gpg-sign the release files$skipping EOT print "<Press Enter to continue> "; @@ -306,8 +309,7 @@ system "rm -rf rsync-*"; if ($live) { chdir($dest) or die $!; - system "gpg -ba rsync-$version.tar.gz"; - system "gpg -ba rsync-$lastversion-$version.diffs.gz"; + system "gpg -ba $tar_name; gpg -ba $diff_name"; } print $break, <<EOT; |