Added and variable checks in bldpkg
This commit is contained in:
parent
dbce033073
commit
d1ed3cb7ca
1 changed files with 3 additions and 1 deletions
4
bldpkg
4
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
|
||||
|
|
Loading…
Reference in a new issue