summaryrefslogtreecommitdiffstats
path: root/punani
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2011-11-16 19:34:09 +0100
committermakefu <github@syntax-fehler.de>2011-11-16 19:34:09 +0100
commit655db45a3ef4ca58f9e9fe42bba015d1fd1eccb6 (patch)
tree8c28c526a2f19ddfca00b1c74ae1aa5aa44dfcd2 /punani
parentc4c248f95a5d796e11984b6b6bc02bf774f5c495 (diff)
//punani: tightnani is now less verbose
Diffstat (limited to 'punani')
-rwxr-xr-xpunani/tightnani/tightnani_client4
1 files changed, 2 insertions, 2 deletions
diff --git a/punani/tightnani/tightnani_client b/punani/tightnani/tightnani_client
index d2a598d3..8caf669e 100755
--- a/punani/tightnani/tightnani_client
+++ b/punani/tightnani/tightnani_client
@@ -1,5 +1,5 @@
#!/bin/bash
-set -xeuf
+set -euf
if [ $# -ne 2 ];then
echo "usage: `basename $0` (install|remove) PACKAGE"
@@ -42,7 +42,7 @@ fi
# find the package name
PKG="$2"
-RESOLVED=`wget -O- $TIGHTNANI_HOST/$PACKER/$PKG`
+RESOLVED=`wget -O- $TIGHTNANI_HOST/$PACKER/$PKG 2>/dev/null`
if [ ! "$RESOLVED" ];then
echo "Could not resolve your requested package, bailing out!"
exit 23