david/synchole
david
/
synchole
Archived
1
0
Fork 0

fixed an issue with the dependency check

This commit is contained in:
david 2019-11-09 01:21:02 +01:00
parent 2936412603
commit 1f8ff1e5b3
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ if ! amipihole; then
fi
for DEPENDENCY in $DEPENDENCIES; do
if ! $(which $DEPENDENCY); then
if [ ! $(which $DEPENDENCY) ]; then
log error "$DEPENDENCY is not installed"
exit 1
fi