Added a test programm to upload images for characters
This commit is contained in:
Marces Zastrow
2025-01-09 13:19:38 +01:00
parent 779cec4052
commit e498ac886e
354 changed files with 59511 additions and 629 deletions
+7 -6
View File
@@ -2,14 +2,15 @@
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
*CYGWIN*|*MINGW*|*MSYS*)
if command -v cygpath > /dev/null 2>&1; then
basedir=`cygpath -w "$basedir"`
fi
;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../node-gyp/bin/node-gyp.js" "$@"
ret=$?
exec "$basedir/node" "$basedir/../node-gyp/bin/node-gyp.js" "$@"
else
node "$basedir/../node-gyp/bin/node-gyp.js" "$@"
ret=$?
exec node "$basedir/../node-gyp/bin/node-gyp.js" "$@"
fi
exit $ret