source: trip-planner-front/node_modules/.bin/node-gyp-build@ 8d391a1

Last change on this file since 8d391a1 was e29cc2e, checked in by Ema <ema_spirova@…>, 3 years ago

primeNG components

  • Property mode set to 100644
File size: 328 bytes
Line 
1#!/bin/sh
2basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
4case `uname` in
5 *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
6esac
7
8if [ -x "$basedir/node" ]; then
9 "$basedir/node" "$basedir/../node-gyp-build/bin.js" "$@"
10 ret=$?
11else
12 node "$basedir/../node-gyp-build/bin.js" "$@"
13 ret=$?
14fi
15exit $ret
Note: See TracBrowser for help on using the repository browser.