1 #!/usr/bin/env bash
2
3 # Make sure pwd is the directory of the script
4 cd "$(dirname "$0")"
5
6 echo "Assuming nodejs and npm is already installed. If you haven't installed them already, do so now"
7 echo "Installing Electron Wrapper's Node Modules..."
8 npm i --no-save --no-audit --no-fund --loglevel=error --no-progress --omit=dev
9
10 echo "Starting Electron Wrapper..."
11 npm run start -- "$@"