Skip to content

Commit 3ab7e2e

Browse files
RDILTravisEz13
authored andcommitted
Remove extra AppVeyor environment check (PowerShell#8709)
Removes a check for AppVeyor env ## PR Context AppVeyor removed (PowerShell#8686 extension)
1 parent 26da240 commit 3ab7e2e

1 file changed

Lines changed: 3 additions & 7 deletions

File tree

test/packaging/windows/msi.tests.ps1

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,9 @@ Describe -Name "Windows MSI" -Fixture {
7474
}
7575
AfterEach {
7676
if ($Error.Count -ne 0 -and !$uploadedLog) {
77-
if ($env:APPVEYOR) {
78-
Push-AppveyorArtifact $msiLog
79-
} else {
80-
Copy-Item -Path $msiLog -Destination $env:temp -Force
81-
Write-Verbose "MSI log is at $env:temp\msilog.txt" -Verbose
82-
}
83-
$uploadedLog = $true
77+
Copy-Item -Path $msiLog -Destination $env:temp -Force
78+
Write-Verbose "MSI log is at $env:temp\msilog.txt" -Verbose
79+
$uploadedLog = $true
8480
}
8581
}
8682

0 commit comments

Comments
 (0)