diff options
Diffstat (limited to 'ship/lib/punani')
-rw-r--r-- | ship/lib/punani | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ship/lib/punani b/ship/lib/punani index ea05a4ec..4338d19d 100644 --- a/ship/lib/punani +++ b/ship/lib/punani @@ -34,7 +34,7 @@ _punani_select_packer() { } _punani_known_packers='pacman apt-get yum brew' _punani_pacman_install(){ pacman --noconfirm -S --needed "$@" ;} -_punani_pacman_remove(){ pacman -Rcs "$@" ;} +_punani_pacman_remove(){ pacman --noconfirm -Rcs "$@" ;} _punani_pacman_has(){ pacman -Q "$1" >/dev/null;} _punani_pacman_owner() { pacman -Qo "$1"; } _punani_aptget_install(){ apt-get -y install "$@" ;} @@ -70,14 +70,14 @@ punani(){ if punani_has $RES; then info "$RES already installed, skipping" else - punani_install $RES || error "cannot install $RES with $PACKER" + punani_install $RES || die "cannot install $RES with $PACKER" fi ;; remove) if ! punani_has $RES; then info "$RES not installed, skipping" else - punani_remove $RES || error "cannot install $RES with $PACKER" + punani_remove $RES || die "cannot install $RES with $PACKER" fi ;; has) @@ -85,6 +85,7 @@ punani(){ info "$RES is installed" else info "$RES is not installed" + exit 1 fi ;; owner) |