From d1ed3cb7ca5b70b5f8fdbdf3bdefbdb107f33ffe Mon Sep 17 00:00:00 2001 From: SMLinux Date: Thu, 3 Feb 2022 20:14:29 +0530 Subject: [PATCH] Added and variable checks in bldpkg --- bldpkg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bldpkg b/bldpkg index 5cef383..f9d98ce 100755 --- a/bldpkg +++ b/bldpkg @@ -5,6 +5,8 @@ # Exit on any error set -e +# All variable names are to be in upper-case, function names in lower-xase. + # Store the source directory path the build was initiated from SRCDIR="$PWD" @@ -38,7 +40,7 @@ else fi # If any of the following variables are not set, abort. -if [ -z "$APP" ] || [ -z "$VERSION" ] || [ -z "$BUILD" ] || [ -z "$DESC" ] || [ -z "$REQUIRES" ] ; then +if [ -z "$APP" ] || [ -z "$VERSION" ] || [ -z "$BUILD" ] || [ -z "$HOMEPAGE" ] || [ -z "$DOWNLOAD" ] || [ -z "$DESC" ] || [ -z "$REQUIRES" ] ; then echo "One or more required variables not set. Aborting." exit 1 fi