Don't exit without installing packages

This commit is contained in:
Brad Warren
2016-02-16 14:19:27 -08:00
parent 95efab93b7
commit 4b25d6543f
2 changed files with 4 additions and 2 deletions
@@ -18,7 +18,8 @@ BootstrapArchCommon() {
pkg-config
"
missing=$($SUDO pacman -T $deps)
# pacman -T exits with 127 if there are missing dependencies
missing=$($SUDO pacman -T $deps) || true
if [ "$missing" ]; then
$SUDO pacman -S --needed $missing