summaryrefslogtreecommitdiff
path: root/bin/pkg
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2008-05-21 22:21:33 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2008-05-21 22:21:33 +0200
commitfcf1fb76ef48b1e857493ad17b074433ec524b9a (patch)
treeb0ceeb47e3e2cf4ee8fc3d6527a4cc16ff465641 /bin/pkg
parent229e346bb3aa36d56145ef5dabf45734d51c233b (diff)
bin/pkg: Use ssh -q to prevent the issue.net from beind displayed
Diffstat (limited to 'bin/pkg')
-rwxr-xr-xbin/pkg2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/pkg b/bin/pkg
index 08549ae..6b295a8 100755
--- a/bin/pkg
+++ b/bin/pkg
@@ -104,7 +104,7 @@ pkg_list_installed () {
pkg_list_available () {
if grep "^ssh" <<< "$PKG_ROOT" &> /dev/null; then
- ssh $(sed 's!^ssh://!!' <<< "$PKG_ROOT" | sed -r 's!^([^/]*)/.*$!\1!') 'ls -1 packages'
+ ssh -q $(sed 's!^ssh://!!' <<< "$PKG_ROOT" | sed -r 's!^([^/]*)/.*$!\1!') 'ls -1 packages'
fi
}