Browse Source

Fix pacman-list-explicit function

The function previously worked only when there were no updates
available. Pacman also does not need superuser rights to list
installed packages.
master
dnuux 12 years ago committed by Sorin Ionescu
parent
commit
ae1fde9e4f
  1. 3
      modules/pacman/functions/pacman-list-explicit

3
modules/pacman/functions/pacman-list-explicit

@ -6,8 +6,7 @@
# Sorin Ionescu <sorin.ionescu@gmail.com> # Sorin Ionescu <sorin.ionescu@gmail.com>
# #
sudo pacman --query --explicit --info \ pacman --query --explicit --info \
$(pacman --query --upgrades | cut -d' ' -f 1) \
| awk ' | awk '
BEGIN { BEGIN {
FS=":" FS=":"

Loading…
Cancel
Save