From 4516285fa869d67168138061cf418ca7aae470c7 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Wed, 15 Aug 2018 16:26:17 +0200 Subject: [PATCH] Pmodules/libpbuild.bash: pbuild::make_all(): check whether ModuleGroup is set, if not abort --- Pmodules/libpbuild.bash | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Pmodules/libpbuild.bash b/Pmodules/libpbuild.bash index f4630a1..80215f8 100644 --- a/Pmodules/libpbuild.bash +++ b/Pmodules/libpbuild.bash @@ -432,6 +432,12 @@ pbuild::make_all() { local variant='' local depend_release='' local -a runtime_dependencies=() + + # + # everything set up? + # + [[ -n ${ModuleGroup} ]] || std::die 5 "Module group not set! Aborting ..." + # # helper functions #