summaryrefslogtreecommitdiff
path: root/pod/perlrepository.pod
diff options
context:
space:
mode:
authorVincent Pit <perl@profvince.com>2009-10-23 22:34:04 +0200
committerVincent Pit <perl@profvince.com>2009-10-23 22:34:04 +0200
commit7930c68bef8756f446d89fffb07160cf4a27f4cc (patch)
treec6a26f56288b1c6605ad4e1f36f58005aa9ebb47 /pod/perlrepository.pod
parent68814ba41330ad31d01867d22786a3d8197b605c (diff)
downloadperl-7930c68bef8756f446d89fffb07160cf4a27f4cc.tar.gz
Cap the exit code of the bisecting script
Segfaults cause $? to be set to 139 on my machine, which stops the bisect process.
Diffstat (limited to 'pod/perlrepository.pod')
-rw-r--r--pod/perlrepository.pod1
1 files changed, 1 insertions, 0 deletions
diff --git a/pod/perlrepository.pod b/pod/perlrepository.pod
index 2924b39039..a72be28b68 100644
--- a/pod/perlrepository.pod
+++ b/pod/perlrepository.pod
@@ -565,6 +565,7 @@ testcase:
[ -x ./perl ] || exit 125
./perl -Ilib ~/testcase.pl
ret=$?
+ [ $ret -gt 127 ] && ret=127
git clean -dxf
exit $ret