Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
packer
======

Bash wrapper for pacman and AUR.


Fork edits made to work more like pacman.
4 changes: 2 additions & 2 deletions packer → packer.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -476,7 +476,7 @@ run_quick_check() {

# proceed with installation prompt
proceed() {
read -n 1
read
echo
case "$REPLY" in
'Y'|'y'|'') return 0 ;;
Expand Down