Merge pull request #21883 from l0rd/winmake-win-gvproxy-target

Add target win-gvproxy in winmake.ps1
This commit is contained in:
openshift-merge-bot[bot]
2024-03-13 14:17:57 +00:00
committed by GitHub
2 changed files with 5 additions and 1 deletions

View File

@ -37,6 +37,7 @@ filtered_changes=$(git diff --name-only $base $head |
grep -F -vx go.sum |
grep -F -vx podman.spec.rpkg |
grep -F -vx .golangci.yml |
grep -F -vx winmake.ps1 |
grep -E -v '/*Makefile$' |
grep -E -v '^[^/]+\.md$' |
grep -E -v '^.github' |

View File

@ -87,7 +87,7 @@ switch ($target) {
'clean' {
Make-Clean
}
'win-sshproxy' {
{$_ -in 'win-sshproxy', 'win-gvproxy'} {
if ($args.Count -gt 1) {
$ref = $args[1]
}
@ -104,5 +104,8 @@ switch ($target) {
Write-Host
Write-Host "Example: Run specfic machine tests "
Write-Host " .\winmake localmachine "basic_test.go""
Write-Host
Write-Host "Example: Download win-gvproxy and win-sshproxy helpers"
Write-Host " .\winmake win-gvproxy"
}
}