summaryrefslogtreecommitdiffstats
path: root/punani
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2011-09-16 01:07:03 +0200
committermakefu <github@syntax-fehler.de>2011-09-16 01:07:03 +0200
commita7fd3fa12427f36770e6105fad8a0b59118a5647 (patch)
tree12163562db229a0bd2058b8b6c0bf05cbe1ac246 /punani
parent095b22ab0c4b8ca7c6f33af2d1f75d3d82055455 (diff)
punani: remove stderr redirection for pacman
stderr redirection results in the shadowing of "Proceed with installation? [Y/n]" leading to total trolling of the user which then most likely will wait forever
Diffstat (limited to 'punani')
-rwxr-xr-xpunani/bin/punani2
1 files changed, 1 insertions, 1 deletions
diff --git a/punani/bin/punani b/punani/bin/punani
index d118b13c..cec53ca1 100755
--- a/punani/bin/punani
+++ b/punani/bin/punani
@@ -79,7 +79,7 @@ handle_system () {
#
# when trying harder it tries to load the package with the given name directly via yaourt
echo "** trying to find package with given file"
- if pacman -S `pkgfile $1` 2>/dev/null; then
+ if pacman -S `pkgfile $1` ; then
echo "++ finished"
exit 0
else