From: Bruce Momjian Date: Sun, 1 Jan 2012 22:59:44 +0000 (-0500) Subject: Don't use tabs in Perl scripts, for consistency. X-Git-Tag: REL9_2_BETA1~639 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6ba139dc5a8a5cce42f0508c14a8b42f4fb6b1cc;p=thirdparty%2Fpostgresql.git Don't use tabs in Perl scripts, for consistency. --- diff --git a/src/tools/copyright.pl b/src/tools/copyright.pl index 9c591e8fb1d..705edaf3ee1 100755 --- a/src/tools/copyright.pl +++ b/src/tools/copyright.pl @@ -26,8 +26,8 @@ sub wanted { # prevent corruption of git indexes, ./.git if ($File::Find::name =~ m{^\./\.git$}) { - $File::Find::prune = 1; - return; + $File::Find::prune = 1; + return; } return if ! -f $File::Find::name || -l $File::Find::name;