sbotools2

Maintenance fork of the original sbotools version 2
Log | Files | Refs | README

commit 2eea123715309ebfb8d39691a1bb35a8306360bd
parent 8202135137e19eb14bf80aa58b6afebeb2137336
Author: Andreas Guldstrand <andreas.guldstrand@gmail.com>
Date:   Sun, 14 Feb 2016 12:43:27 +0100

No need to check NON_INT arg there; it would have already returned

Diffstat:
MSBO-Lib/lib/SBO/Lib.pm | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm @@ -1359,7 +1359,7 @@ sub process_sbos { # return now if we're not interactive return \@failures, $exit if $args{NON_INT}; # or if this is the last $sbo - return \@failures, $exit if !$args{NON_INT} and $count == @$todo; + return \@failures, $exit if $count == @$todo; say "Failure encountered while building $sbo:"; say " $fail"; print 'Do you want to proceed [n] ';