Author: adam-guest
Date: 2008-03-03 19:36:30 +0000 (Mon, 03 Mar 2008)
New Revision: 1094
Modified:
trunk/scripts/checkbashisms.pl
Log:
Fix syntax error
Modified: trunk/scripts/checkbashisms.pl
===================================================================
--- trunk/scripts/checkbashisms.pl 2008-03-03 19:13:58 UTC (rev 1093)
+++ trunk/scripts/checkbashisms.pl 2008-03-03 19:36:30 UTC (rev 1094)
@@ -65,7 +65,7 @@
my $status = 0;
foreach my $filename (@ARGV) {
- if (!opt_force and script_is_evil_and_wrong($filename)) {
+ if (!$opt_force and script_is_evil_and_wrong($filename)) {
warn "script $filename does not appear to be a /bin/sh script;
skipping\n";
next;
}
--
To unsubscribe, send mail to [EMAIL PROTECTED]