aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Weingärtner <timo@tiwe.de>2016-10-11 16:42:02 +0200
committerTimo Weingärtner <timo@tiwe.de>2016-10-11 16:42:02 +0200
commit3944f8c3b52e23e7e617fbfa24307ce8c07757e6 (patch)
tree0f493ccd8aecf8ec4c40eaf00dc4a88583448694
parent2f994963899ca8e039dd0aa38884693a9928e116 (diff)
downloadssh-agent-filter-3944f8c3b52e23e7e617fbfa24307ce8c07757e6.tar.gz
fixup! afssh: use realpath instead of readlink -f, with fallback
-rwxr-xr-xafssh3
1 files changed, 1 insertions, 2 deletions
diff --git a/afssh b/afssh
index 3899fba..3c715e3 100755
--- a/afssh
+++ b/afssh
@@ -51,9 +51,8 @@ fi
declare -a agent_filter_args
-type realpath >/dev/null 2>&1 || realpath () { readlink -f "$@"; }
-
if [ -x "${BASH_SOURCE%/*}/ssh-agent-filter" ]; then
+ type realpath >/dev/null 2>&1 || realpath () { readlink -f "$@"; }
SAF=$(realpath "${BASH_SOURCE%/*}/ssh-agent-filter")
else
SAF=$(which ssh-agent-filter)