From 2e6f83f051edd36f2a87fe6c80e2817fcadbbc8c Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 7 Jan 2022 10:06:16 +0100 Subject: [PATCH] scripts/copyright.pl: support many provided file names on the cmdline --- scripts/copyright.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/copyright.pl b/scripts/copyright.pl index 9f37d1f2d1..089f04a9eb 100755 --- a/scripts/copyright.pl +++ b/scripts/copyright.pl @@ -160,7 +160,7 @@ if($ARGV[0] eq "-v") { shift @ARGV; } if($ARGV[0]) { - push @all, $ARGV[0]; + push @all, @ARGV; } else { @all = `git ls-files`; -- 2.47.3