15 lines
311 B
Bash
15 lines
311 B
Bash
#!/bin/sh
|
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
|
|
case `uname` in
|
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
esac
|
|
|
|
if [ -x "$basedir/node" ]; then
|
|
"$basedir/node" "$basedir/../sshpk/bin/sshpk-conv" "$@"
|
|
ret=$?
|
|
else
|
|
node "$basedir/../sshpk/bin/sshpk-conv" "$@"
|
|
ret=$?
|
|
fi
|
|
exit $ret
|