githrun

A CLI tool to run Python scrip...
Log | Files | Refs | README | LICENSE

tsc (385B)


      1 #!/bin/sh
      2 basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
      3 
      4 case `uname` in
      5     *CYGWIN*|*MINGW*|*MSYS*)
      6         if command -v cygpath > /dev/null 2>&1; then
      7             basedir=`cygpath -w "$basedir"`
      8         fi
      9     ;;
     10 esac
     11 
     12 if [ -x "$basedir/node" ]; then
     13   exec "$basedir/node"  "$basedir/../typescript/bin/tsc" "$@"
     14 else 
     15   exec node  "$basedir/../typescript/bin/tsc" "$@"
     16 fi
© notamitgamer • Site Built: 2026-07-21 13:58:23 UTC • git-mirror commit: 1037f62 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror