Author: adam-guest
Date: 2008-05-11 11:42:12 +0000 (Sun, 11 May 2008)
New Revision: 1439
Modified:
trunk/debian/changelog
trunk/scripts/checkbashisms.pl
Log:
Don't flag "time)" as matching "time"
Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog 2008-05-11 11:17:41 UTC (rev 1438)
+++ trunk/debian/changelog 2008-05-11 11:42:12 UTC (rev 1439)
@@ -13,6 +13,7 @@
positives
+ Further improve the heredoc detection (to allow the space in "<< 'foo'")
+ Make the check for "process substitution" ignore quoted strings
+ + Don't flag "time)" as matching "time"
* cowpoke: New script to upload a Debian source package to a cowbuilder host
and build it, optionally also signing and uploading the result to an
incoming queue (Closes: #479274)
Modified: trunk/scripts/checkbashisms.pl
===================================================================
--- trunk/scripts/checkbashisms.pl 2008-05-11 11:17:41 UTC (rev 1438)
+++ trunk/scripts/checkbashisms.pl 2008-05-11 11:42:12 UTC (rev 1439)
@@ -418,7 +418,7 @@
$LEADIN . 'ulimit\b' => q<ulimit>,
$LEADIN . 'shopt\b' => q<shopt>,
$LEADIN . 'type\s' => q<type>,
- $LEADIN . 'time\b' => q<time>,
+ $LEADIN . 'time\s' => q<time>,
$LEADIN . 'dirs\b' => q<dirs>,
'(?:^|\s+)[<>]\(.*?\)' => q<\<() process substituion>,
);
--
To unsubscribe, send mail to [EMAIL PROTECTED]