#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")

case `uname` in
    *CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac

if [ -z "$NODE_PATH" ]; then
  export NODE_PATH="/Users/jessegovart/WWW/cor-design-system/node_modules/.pnpm/node_modules"
else
  export NODE_PATH="$NODE_PATH:/Users/jessegovart/WWW/cor-design-system/node_modules/.pnpm/node_modules"
fi
if [ -x "$basedir/node" ]; then
  exec "$basedir/node"  "$basedir/../../../../node_modules/.pnpm/lighthouse@9.6.7/node_modules/lighthouse/lighthouse-core/scripts/manual-chrome-launcher.js" "$@"
else
  exec node  "$basedir/../../../../node_modules/.pnpm/lighthouse@9.6.7/node_modules/lighthouse/lighthouse-core/scripts/manual-chrome-launcher.js" "$@"
fi
