diff options
author | Wayne Davison <wayned@samba.org> | 2006-04-18 06:43:17 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2006-04-18 06:43:17 +0000 |
commit | de3438407c4f976c55172093795b87e49cb4a6e2 (patch) | |
tree | 9b257ae016a48e3fa8ea97dfcb20e30ed08133be /packaging/release-rsync | |
parent | 434764269cc3f5bc2fc62f3789ff9d23a562d2d7 (diff) | |
download | rsync-de3438407c4f976c55172093795b87e49cb4a6e2.tar.gz rsync-de3438407c4f976c55172093795b87e49cb4a6e2.tar.bz2 rsync-de3438407c4f976c55172093795b87e49cb4a6e2.zip |
Twiddle the trailing output in non-live mode.
Diffstat (limited to 'packaging/release-rsync')
-rwxr-xr-x | packaging/release-rsync | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/packaging/release-rsync b/packaging/release-rsync index 65b50825..3f295f0b 100755 --- a/packaging/release-rsync +++ b/packaging/release-rsync @@ -310,10 +310,11 @@ system "rm -rf rsync-*"; if ($live) { chdir($dest) or die $!; system "gpg -ba $tar_name; gpg -ba $diff_name"; -} - -print $break, <<EOT; + print $break, <<EOT; All done. Remember to announce the release on *BOTH* rsync-announce\@lists.samba.org and rsync\@lists.samba.org! EOT +} else { + print $break, "All done.\n"; +} |