summaryrefslogtreecommitdiffstats
path: root/packaging/windows/package.ps1
blob: 828e105f1e05ea6c368337b4328de3ed8f091576 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Package the build

#Requires -Version 4.0

$ErrorActionPreference = "Stop"

. "$PSScriptRoot\functions.ps1"

$msysbash = Get-MSYS2Bash "$msysprefix"
$env:CHERE_INVOKING = 'yes'

& $msysbash -l "$PSScriptRoot\package-windows.sh"

if ($LastExitcode -ne 0) {
    exit 1
}