forked from germedeb/aleta-postre
added a message to the missing dependencies error
This commit is contained in:
parent
54ceb21a30
commit
3c91ddf6d0
@ -17,15 +17,17 @@ if [ "$IGNOREDEPS" != ok ]
|
|||||||
then
|
then
|
||||||
# It mutes the output but verifies if the command returns an error
|
# It mutes the output but verifies if the command returns an error
|
||||||
# if that's true, then the process can't continue
|
# if that's true, then the process can't continue
|
||||||
command -v inkscape >/dev/null 2>&1 || { echo >&2 "Please install 'inkscape'"; DEPSCOMPLETE=n; }
|
command -v inkscape >/dev/null 2>&1 || { echo >&2 "Missing dependency: inkscape"; DEPSCOMPLETE=n; }
|
||||||
command -v parallel >/dev/null 2>&1 || { echo >&2 "Please install 'parallel'"; DEPSCOMPLETE=n; }
|
command -v parallel >/dev/null 2>&1 || { echo >&2 "Missing dependency: parallel"; DEPSCOMPLETE=n; }
|
||||||
command -v bash >/dev/null 2>&1 || { echo >&2 "Please install 'bash'"; DEPSCOMPLETE=n; }
|
command -v bash >/dev/null 2>&1 || { echo >&2 "Missing dependency: bash"; DEPSCOMPLETE=n; }
|
||||||
command -v optipng >/dev/null 2>&1 || { echo >&2 "Please install 'parallel'"; DEPSCOMPLETE=n; }
|
command -v optipng >/dev/null 2>&1 || { echo >&2 "Missing dependency: parallel"; DEPSCOMPLETE=n; }
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# here is the checking. it is sepparated for practicy
|
# here is the checking. it is sepparated for practicy
|
||||||
if [ "$DEPSCOMPLETE" = n ]
|
if [ "$DEPSCOMPLETE" = n ]
|
||||||
then exit 1
|
then
|
||||||
|
echo Please install the missing dependencies to start building
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Check for --help
|
# Check for --help
|
||||||
|
Loading…
x
Reference in New Issue
Block a user