Files
django-core-base/frontend/node_modules/.bin/tsc
juanjo 0fc5392bd2
All checks were successful
DEPLOY_MULTI_BRACH/pipeline/head This commit looks good
fix engram rtk
2026-04-16 18:24:13 +02:00

17 lines
385 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/../typescript/bin/tsc" "$@"
else
exec node "$basedir/../typescript/bin/tsc" "$@"
fi