summaryrefslogtreecommitdiff
path: root/bin/build-electron
blob: 032a7fee972c720c853e2f9036f6cad01d118eea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

cd electron

if [ "$BUILD" = "windows" ]; then
  NPM="wine cmd /c 'C:\node\npm.cmd'"
else
  NPM="npm"
fi

$NPM install
$NPM update
$NPM run package