This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
portapy/Download-Latest-Python/node_modules/.bin/wait-on

16 lines
309 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/../wait-on/bin/wait-on" "$@"
ret=$?
else
node "$basedir/../wait-on/bin/wait-on" "$@"
ret=$?
fi
exit $ret