mirror of
https://github.com/actions/setup-python.git
synced 2024-11-06 07:55:52 -05:00
16 lines
303 B
Text
16 lines
303 B
Text
|
#!/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/../atob/bin/atob.js" "$@"
|
||
|
ret=$?
|
||
|
else
|
||
|
node "$basedir/../atob/bin/atob.js" "$@"
|
||
|
ret=$?
|
||
|
fi
|
||
|
exit $ret
|