[Catalyst-commits] r10385 - trunk/examples/SmokeServer/script
caelum at dev.catalyst.perl.org
caelum at dev.catalyst.perl.org
Sat May 30 03:23:13 GMT 2009
Author: caelum
Date: 2009-05-30 03:23:12 +0000 (Sat, 30 May 2009)
New Revision: 10385
Modified:
trunk/examples/SmokeServer/script/cpan_download.pl
trunk/examples/SmokeServer/script/cpan_installdeps.pl
Log:
minor changes
Modified: trunk/examples/SmokeServer/script/cpan_download.pl
===================================================================
--- trunk/examples/SmokeServer/script/cpan_download.pl 2009-05-30 03:00:34 UTC (rev 10384)
+++ trunk/examples/SmokeServer/script/cpan_download.pl 2009-05-30 03:23:12 UTC (rev 10385)
@@ -57,6 +57,8 @@
# extract
mkdir extracted 2>/dev/null
+cd extracted
+rm -rf *
find authors/id -name '*.zip' | while read f; do (cd extracted; unzip ../$f ); done
find authors/id -name '*.tar.gz' | while read f; do (cd extracted; tar zxf ../$f); done
Modified: trunk/examples/SmokeServer/script/cpan_installdeps.pl
===================================================================
--- trunk/examples/SmokeServer/script/cpan_installdeps.pl 2009-05-30 03:00:34 UTC (rev 10384)
+++ trunk/examples/SmokeServer/script/cpan_installdeps.pl 2009-05-30 03:23:12 UTC (rev 10385)
@@ -42,7 +42,7 @@
CPAN::Shell->notest(install => $name);
}
- system "make realclean";
+ system "make realclean >/dev/null 2>&1";
}
print "************ DONE ***************\n";
More information about the Catalyst-commits
mailing list