summaryrefslogtreecommitdiffstats
path: root/punani
diff options
context:
space:
mode:
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