From 75d6a19ae81a1faa624699556c062b0a34fb6852 Mon Sep 17 00:00:00 2001 From: "Juergen E. Fischer" Date: Fri, 26 Feb 2016 09:34:26 +0100 Subject: [PATCH] release.pl: fix dryrun comment (followup a934b01) --- scripts/release.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release.pl b/scripts/release.pl index 46035ab7961..1032af23cf6 100755 --- a/scripts/release.pl +++ b/scripts/release.pl @@ -153,7 +153,7 @@ print "Updating changelog...\n"; run( "scripts/create_changelog.sh", "create_changelog.sh failed" ); unless( $dopoint ) { - run( "scripts/update-news.pl $newmajor $newminor '$release'" ) if $major>2 || ($major==2 && $minor>14); + run( "scripts/update-news.pl $newmajor $newminor '$release'", "could not update news" ) if $major>2 || ($major==2 && $minor>14); run( "git commit -a -m \"changelog and news update for $release\"", "could not commit changelog and news update" );