[Jifty-commit] r1614 - jifty/trunk/lib/Jifty/Script

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Wed Jul 19 00:08:58 EDT 2006


Author: audreyt
Date: Wed Jul 19 00:08:49 2006
New Revision: 1614

Modified:
   jifty/trunk/lib/Jifty/Script/Deps.pm

Log:
* be a bit lessnoisy

Modified: jifty/trunk/lib/Jifty/Script/Deps.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Script/Deps.pm	(original)
+++ jifty/trunk/lib/Jifty/Script/Deps.pm	Wed Jul 19 00:08:49 2006
@@ -47,7 +47,7 @@
     # First let's find out our dependencies.
     # I think we can cache the result in META.yml or something.
 
-    warn "===> Scanning for dependencies...\n";
+    warn "Scanning for dependencies...\n";
 
     my @files   = _get_files_in(grep { -d } map { $_, "share/$_" } qw( lib html bin ));
     my $map     = scan_deps(
@@ -63,10 +63,10 @@
         next if $mod->{file} eq "$Config::Config{archlib}/$key";
         push @mod, _name($key);
 
-        warn " - $mod[-1]\n";
+        warn "* $mod[-1]\n";
     }
 
-    warn "===> Populating share/deps/...\n";
+    warn "Populating share/deps/...\n";
 
     mkdir "share";
     mkdir "share/deps";
@@ -77,7 +77,7 @@
         pattern => $pat,
         out     => 'share/deps/',
         follow  => 1,
-        verbose => 1,
+        verbose => 0,
         test    => 0,
     );
 }


More information about the Jifty-commit mailing list