CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
oxlint17 linesDownload Raw Back to .bin
1#!/bin/sh2basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")3 4case `uname` in5    *CYGWIN*|*MINGW*|*MSYS*)6        if command -v cygpath > /dev/null 2>&1; then7            basedir=`cygpath -w "$basedir"`8        fi9    ;;10esac11 12if [ -x "$basedir/node" ]; then13  exec "$basedir/node"  "$basedir/../oxlint/bin/oxlint" "$@"14else 15  exec node  "$basedir/../oxlint/bin/oxlint" "$@"16fi17