Browse Source

removed stray fi

pull/667/head
Daniel Gibbs 9 years ago
parent
commit
94af491dfe
  1. 11
      functions/check_deps.sh

11
functions/check_deps.sh

@ -16,12 +16,11 @@ elif [ -n "$(command -v yum)" ]; then
yum -q list installed ${deptocheck} 2>/dev/null
depstatus=$?
fi
if [ "${depstatus}" == "0" ]; then
missingdep=0
else
# if missing dependency is flagged
missingdep=1
fi
if [ "${depstatus}" == "0" ]; then
missingdep=0
else
# if missing dependency is flagged
missingdep=1
fi
# Add missing dependencies are added to array_deps_missing array

Loading…
Cancel
Save