summaryrefslogtreecommitdiff
path: root/gui/win32/scripts/run.ps1
blob: a8f50e85749b81b1dd67c93a920004d18de5e0aa (plain)
1
2
3
4
5
6
7
8
9
10
$originalLocation = Get-Location
$scriptPath = Split-Path -Parent $MyInvocation.MyCommand.Path
Set-Location $scriptPath

$exePath = "..\build\bin\butck_gui.exe"
if (Test-Path $exePath) {
    & $exePath
}

Set-Location $originalLocation