sbotools2

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

commit 0e4fe79e5386d8194bd31aaade578ddbd33d97c0
parent 7aecb9379feb66a84d3b1742af81aeb182135157
Author: Andreas Guldstrand <andreas.guldstrand@gmail.com>
Date:   Sat, 14 Nov 2015 11:25:04 +0100

Add back argument check to get_build_queue()

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

diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm @@ -967,6 +967,7 @@ sub _build_queue { } sub get_build_queue { + exists $_[1] or script_error('get_build_queue requires two arguments.'); return [ _build_queue(@_) ]; }