Powershell script to automate installer builds

This commit is contained in:
Joel Collins 2019-03-04 12:57:31 +00:00
parent 7085aaf8d4
commit 96ab05a9c3

13
installers/make.ps1 Normal file
View file

@ -0,0 +1,13 @@
$here = $PSScriptRoot
echo "Building deb packages..."
$wslhere = (wsl wslpath -a ("$here" -Replace '\\','\\'))
wsl node "$wslhere/create-deb-x64.js"
wsl node "$wslhere/create-deb-arm.js"
echo "Building Windows installer..."
node "$here\create-exe.js"
echo "Building Windows appx package..."
node "$here\create-appx.js"