Author: adsb
Date: 2009-07-29 13:59:36 +0000 (Wed, 29 Jul 2009)
New Revision: 1948

Modified:
   trunk/scripts/dscverify.pl
Log:
dscverify: Add a missing space before 2>&1 when hiding GPG output

Modified: trunk/scripts/dscverify.pl
===================================================================
--- trunk/scripts/dscverify.pl  2009-07-29 13:54:22 UTC (rev 1947)
+++ trunk/scripts/dscverify.pl  2009-07-29 13:59:36 UTC (rev 1948)
@@ -111,7 +111,7 @@
     my $cmd = 'gpg --batch --no-options --no-default-keyring --always-trust';
     foreach (@rings) { $cmd .= " --keyring $_"; }
     $cmd .= " <$file";
-    $cmd .= "2>&1 >/dev/null" if not ($verbose);
+    $cmd .= " 2>&1 >/dev/null" if not ($verbose);
 
     my $out=`$cmd`;
     if ($? == 0) { return ""; }



-- 
To unsubscribe, send mail to [email protected].

Reply via email to