Files
SSHCLIENT/node_modules/.bin/wait-on
T
Your Name edf4d743cb first add
2026-07-28 21:25:30 +08:00

17 lines
387 B
Bash

#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../wait-on/bin/wait-on" "$@"
else
exec node "$basedir/../wait-on/bin/wait-on" "$@"
fi