diff options
author | J Pipkin <j@dawnrazor.net> | 2013-01-06 01:14:56 -0600 |
---|---|---|
committer | J Pipkin <j@dawnrazor.net> | 2013-01-06 01:14:56 -0600 |
commit | dd8acac2f2ab8f5522d17f460ad9940a97682e35 (patch) | |
tree | 07eb7dd8947d95b2caaec76debec05be1181f48d /SBO-Lib/lib | |
parent | 33b009c1a149c34f85005a44a0180f515d479183 (diff) | |
download | sbotools2-dd8acac2f2ab8f5522d17f460ad9940a97682e35.tar.xz |
die unless keys %downloads > 0
Diffstat (limited to 'SBO-Lib/lib')
-rw-r--r-- | SBO-Lib/lib/SBO/Lib.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm index 5f9f011..f7b5c86 100644 --- a/SBO-Lib/lib/SBO/Lib.pm +++ b/SBO-Lib/lib/SBO/Lib.pm @@ -722,6 +722,8 @@ sub do_slackbuild { LOCATION => $location, 32 => $args{COMPAT32} ); + die "Unable to get download information from $location/$sbo.info.\n" unless + keys %downloads > 0; check_distfiles %downloads; my @symlinks = create_symlinks($args{LOCATION}, %downloads); # setup and run the .SlackBuild itself |