#!/usr/bin/env bash
set -euo pipefail
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

# This script exists because -- in Git-Bash on Windows -- the command "npm start" or "npm run start"
# will hang after a CTRL-C. Running this script instead prevents the problem. *sigh*
 
exec node -- "$SCRIPT_DIR/../src/index.js" --client-required "$@"
