#!/usr/bin/env sh
if [ "x$npm_config_node_gyp" = "x" ]; then
  exec /usr/bin/node-gyp "$@"
else
  "$npm_config_node_gyp" "$@"
fi
