diff --git a/README.md b/README.md new file mode 100644 index 0000000..e9eafce --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +packer +====== + +Bash wrapper for pacman and AUR. + + +Fork edits made to work more like pacman. diff --git a/packer b/packer.sh old mode 100644 new mode 100755 similarity index 99% rename from packer rename to packer.sh index c7eee90..6c03b79 --- a/packer +++ b/packer.sh @@ -427,7 +427,7 @@ installhandling() { # Install pacman dependencies if [[ $pacmandepends ]]; then - runasroot $PACMAN --noconfirm --asdeps -S -- "${pacmandepends[@]}" || err "Installation failed." + runasroot $PACMAN --asdeps -S -- "${pacmandepends[@]}" || err "Installation failed." fi # Install aur dependencies @@ -476,7 +476,7 @@ run_quick_check() { # proceed with installation prompt proceed() { - read -n 1 + read echo case "$REPLY" in 'Y'|'y'|'') return 0 ;;