Skip to content
This repository has been archived by the owner on Aug 9, 2019. It is now read-only.

Commit

Permalink
Revert "Merge pull request #17 from Scimmia22/patch-1"
Browse files Browse the repository at this point in the history
This reverts commit ec6fa12, reversing
changes made to 1191fa6.

This break package with -debug- in their name
  • Loading branch information
Skunnyk committed Apr 29, 2014
1 parent ec6fa12 commit 7b2feb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/pkgbuild.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -273,13 +273,13 @@ install_package() {
echo
case "$answer" in
V) local i=0
for _file in "$YPKGDEST"/!(*.sig|*-debug-*); do
for _file in "$YPKGDEST"/!(*.sig); do
(( i++ )) && { prompt2 $(gettext 'Press any key to continue'); read -n 1; }
$PACMAN -Qlp "$_file"
done
;;
C) if type -p namcap &>/dev/null ; then
for _file in "$YPKGDEST"/!(*.sig|*-debug-*); do
for _file in "$YPKGDEST"/!(*.sig); do
namcap "$_file"
done
else
Expand Down

0 comments on commit 7b2feb6

Please # to comment.