Remove quotes around $SUDO

This commit is contained in:
Brad Warren 2016-02-16 13:59:28 -08:00
parent 9c7e99cbf5
commit 95efab93b7
2 changed files with 4 additions and 4 deletions

View file

@ -307,10 +307,10 @@ BootstrapArchCommon() {
pkg-config
"
missing=$("$SUDO" pacman -T $deps)
missing=$($SUDO pacman -T $deps)
if [ "$missing" ]; then
"$SUDO" pacman -S --needed $missing
$SUDO pacman -S --needed $missing
fi
}

View file

@ -18,9 +18,9 @@ BootstrapArchCommon() {
pkg-config
"
missing=$("$SUDO" pacman -T $deps)
missing=$($SUDO pacman -T $deps)
if [ "$missing" ]; then
"$SUDO" pacman -S --needed $missing
$SUDO pacman -S --needed $missing
fi
}