blob: 7ebc2f766a23e9827699684d8730feecc6c4091d (
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\butckg.exe"
if (Test-Path $exePath) {
& $exePath
}
Set-Location $originalLocation
|