Added and variable checks in bldpkg

This commit is contained in:
SMLinux 2022-02-03 20:14:29 +05:30
parent dbce033073
commit d1ed3cb7ca

4
bldpkg
View file

@ -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