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 yum -q list installed ${deptocheck} 2>/dev/null
depstatus=$? depstatus=$?
fi fi
if [ "${depstatus}" == "0" ]; then if [ "${depstatus}" == "0" ]; then
missingdep=0 missingdep=0
else else
# if missing dependency is flagged # if missing dependency is flagged
missingdep=1 missingdep=1
fi
fi fi
# Add missing dependencies are added to array_deps_missing array # Add missing dependencies are added to array_deps_missing array

Loading…
Cancel
Save