about summary refs log tree commit diff
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-10-08 14:31:40 +0200
committerfranck cuny <franck@lumberjaph.net>2010-10-08 14:31:40 +0200
commitabce659416bf0928904642ccfe23bd5ee8a5ca64 (patch)
tree9bb0dd92ae6c8fbf388ef694f1f67782565f5104
parentlayout (diff)
downloadjitterbug-abce659416bf0928904642ccfe23bd5ee8a5ca64.tar.gz
update capsule
-rwxr-xr-xscripts/capsule.sh5
1 files changed, 1 insertions, 4 deletions
diff --git a/scripts/capsule.sh b/scripts/capsule.sh
index a5fc076..1977313 100755
--- a/scripts/capsule.sh
+++ b/scripts/capsule.sh
@@ -3,8 +3,6 @@
 # first arg:  build_dir
 # second arg: report path
 
-set -e
-
 builddir=$1
 report_path=$2
 
@@ -18,7 +16,6 @@ for perl in $HOME/perl5/perlbrew/perls/perl-5.*
 do
     theperl="$(basename $perl)"
     perlbrew switch $theperl
-	hash -r
 
     perlversion=$(perl -v)
     logfile="$report_path/$theperl.txt"
@@ -31,6 +28,6 @@ do
         perl Makefile.PL
         cpanm --installdeps .
         make
-        HARNESS_VERBOSE=1 make test >> $logfile  2>&1
+        HARNESS_VERBOSE=1 make test >> $logfile 2>&1
     fi
 done