mirror of
https://github.com/containers/podman.git
synced 2026-07-10 07:15:05 -04:00
Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
(cherry picked from commit f6575bd17f)
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
14 lines
246 B
PowerShell
14 lines
246 B
PowerShell
#!/usr/bin/env powershell
|
|
|
|
. $PSScriptRoot\win-lib.ps1
|
|
|
|
if ($Env:CI -eq "true") {
|
|
Push-Location "$ENV:CIRRUS_WORKING_DIR\repo"
|
|
} else {
|
|
Push-Location $PSScriptRoot\..\..
|
|
}
|
|
|
|
Run-Command ".\winmake.ps1 localunit"
|
|
|
|
Pop-Location
|