[provisioning] Fix bugs in provision.sh

This commit is contained in:
Correl Roush 2020-06-24 21:30:41 -04:00
parent bbacd5a441
commit fc944d75ee

View file

@ -76,10 +76,10 @@ function _run {
shift shift
if [ -z "$DEBUG" ]; then if [ -z "$DEBUG" ]; then
echo -n "$msg..." echo -n "$msg..."
$@ >/dev/null 2>&1 "$@" >/dev/null 2>&1
else else
echo "$msg..." echo "$msg..."
$@ "$@"
fi fi
echo "${green}done.${normal}" echo "${green}done.${normal}"
} }
@ -110,11 +110,10 @@ function _recipe {
USER=${USER:-$(whoami)} USER=${USER:-$(whoami)}
_PLATFORM=$(uname -s | awk '{print tolower($1)}') _PLATFORM=$(uname -s | awk '{print tolower($1)}')
if [ -z "${INSTALL[@]}" ]; then if [ "${#INSTALL[@]}" -eq 0 ]; then
INSTALL=(base) INSTALL=(base)
fi fi
for recipe in "${INSTALL[@]}"; do for recipe in "${INSTALL[@]}"; do
_recipe $recipe _recipe $recipe
done done