Skip to content

Commit a10a914

Browse files
committed
update windows build
1 parent 9183ef8 commit a10a914

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ jobs:
3434

3535
- name: "Build AutonomySim"
3636
shell: pwsh
37-
run: ./scripts/build.ps1 -BuildMode "Release"
37+
run: ./scripts/build.ps1 -BuildMode "Release" -Deploy

scripts/test_visualstudio.psm1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ function Set-VsInstance {
6262
ForEach-Object { $i = 0; $i++; $_ | Add-Member -NotePropertyName "#" -NotePropertyValue $i -PassThru }
6363
Write-Output "The following Visual Studio installations were found:"
6464
$Configs | Format-Table -Property $DisplayProperties | Out-String | ForEach-Object { Write-Output $_ }
65-
if ($Automate -ne $true) {
66-
$Selected = Read-Host "Enter the '#' of the Visual Studio installation to use. Press <Enter> to quit: "
67-
} else {
65+
if ($Automate -eq $true) {
6866
$Selected = 1
67+
} else {
68+
$Selected = Read-Host "Enter the '#' of the Visual Studio installation to use. Press <Enter> to quit: "
6969
}
7070
if (-not $Selected) {
7171
Write-Output "No Visual Studio installation selected. Exiting program."

0 commit comments

Comments
 (0)