SourceTermAnalysisSystem_vue/node_modules/.bin/geo2topo
2026-05-15 10:22:44 +08:00

17 lines
405 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/../topojson-server/bin/geo2topo" "$@"
else
exec node "$basedir/../topojson-server/bin/geo2topo" "$@"
fi