aboutsummaryrefslogtreecommitdiff
path: root/SBO-Lib/lib/SBO
diff options
context:
space:
mode:
authorAndreas Guldstrand <andreas.guldstrand@gmail.com>2016-02-14 12:43:27 +0100
committerAndreas Guldstrand <andreas.guldstrand@gmail.com>2016-02-14 12:43:27 +0100
commit2eea123715309ebfb8d39691a1bb35a8306360bd (patch)
tree89afecac2eefa76fe0d4fb46bb0d963b444a924d /SBO-Lib/lib/SBO
parent8202135137e19eb14bf80aa58b6afebeb2137336 (diff)
downloadsbotools2-2eea123715309ebfb8d39691a1bb35a8306360bd.tar.xz
No need to check NON_INT arg there; it would have already returned
Diffstat (limited to 'SBO-Lib/lib/SBO')
-rw-r--r--SBO-Lib/lib/SBO/Lib.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm
index 1355a38..e380e25 100644
--- 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] ';