diff mbox series

[PULL,5/8] scripts: fix error from checkpatch.pl when no commits are found

Message ID 20201027095938.28673-6-alex.bennee@linaro.org
State Accepted
Commit 2d4274d6fe97da3e13ae21720ef0b57d6c3dc980
Headers show
Series testing and misc (gitdm, gitlab, docker, make) | expand

Commit Message

Alex Bennée Oct. 27, 2020, 9:59 a.m. UTC
From: Daniel P. Berrangé <berrange@redhat.com>

The error message was supposed to mention the input revision list start
point, not the branch flag.

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20201019143537.283094-3-berrange@redhat.com>
Message-Id: <20201021163136.27324-6-alex.bennee@linaro.org>
diff mbox series

Patch

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 6ed34970f9..88c858f67c 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -392,7 +392,7 @@  if ($chk_branch) {
 
 	close $HASH;
 
-	die "$P: no revisions returned for revlist '$chk_branch'\n"
+	die "$P: no revisions returned for revlist '$ARGV[0]'\n"
 	    unless @patches;
 
 	my $i = 1;