diff options
author | Daniel P. Berrangé | 2020-10-21 18:31:35 +0200 |
---|---|---|
committer | Alex Bennée | 2020-10-27 10:53:50 +0100 |
commit | 2d4274d6fe97da3e13ae21720ef0b57d6c3dc980 (patch) | |
tree | 68431157c70aa44b0bd5f384687e1a3f6eabf8ac | |
parent | gitlab: skip checkpatch.pl checks if no commit delta on branch (diff) | |
download | qemu-2d4274d6fe97da3e13ae21720ef0b57d6c3dc980.tar.gz qemu-2d4274d6fe97da3e13ae21720ef0b57d6c3dc980.tar.xz qemu-2d4274d6fe97da3e13ae21720ef0b57d6c3dc980.zip |
scripts: fix error from checkpatch.pl when no commits are found
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>
-rwxr-xr-x | scripts/checkpatch.pl | 2 |
1 files changed, 1 insertions, 1 deletions
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; |