CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
nodetouch17 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/../touch/bin/nodetouch.js" "$@"14else 15  exec node  "$basedir/../touch/bin/nodetouch.js" "$@"16fi17