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