Files
screeps-deploy-action/node_modules/.bin/node-gyp-build
Philipp Horstenkamp 786d2c8e74
All checks were successful
Lint / pre-commit Linting (push) Successful in 1m19s
Run npm-install and add npm install as a post update option
2025-12-16 01:01:56 +01:00

13 lines
310 B
Bash

#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../node-gyp-build/bin.js" "$@"
else
exec node "$basedir/../node-gyp-build/bin.js" "$@"
fi