Skip to content

Commit e184b12

Browse files
alpar-tmark-vieira
authored andcommitted
Fix the windows packaging tests exit code
$? is a boolean and was used incorrectly
1 parent e717f41 commit e184b12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.ci/os.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ $ErrorActionPreference="Continue"
2828
# TODO: remove the task exclusions once dependencies are set correctly and these don't run for Windows or buldiung the deb on windows is fixed
2929
& .\gradlew.bat -g "C:\Users\$env:username\.gradle" --parallel --scan --console=plain destructiveDistroTest
3030

31-
exit $?
31+
exit $LastExitCode

0 commit comments

Comments
 (0)