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

Commit

Permalink
Merge pull request #17 from Scimmia22/patch-1
Browse files Browse the repository at this point in the history
No need to list or run namcap on debugging symbol packages.
  • Loading branch information
Skunnyk committed Apr 29, 2014
2 parents 1191fa6 + 31a16dc commit ec6fa12
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); do
for _file in "$YPKGDEST"/!(*.sig|*-debug-*); 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); do
for _file in "$YPKGDEST"/!(*.sig|*-debug-*); do
namcap "$_file"
done
else
Expand Down

0 comments on commit ec6fa12

Please # to comment.