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

#Requires -Version 4.0

$ErrorActionPreference = "Stop"

. "$PSScriptRoot\functions.ps1"

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

& $msysbash -l "$PSScriptRoot\compile-on-windows.sh"

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