Powershell script to automate installer builds
This commit is contained in:
parent
7085aaf8d4
commit
96ab05a9c3
1 changed files with 13 additions and 0 deletions
13
installers/make.ps1
Normal file
13
installers/make.ps1
Normal 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue