Skip to content

Commit 73cd9e0

Browse files
committed
Fix the windows packaging tests exit code
$? is a boolean and was used incorrectly
1 parent 7a622f0 commit 73cd9e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.ci/os.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ $ErrorActionPreference="Continue"
3333
-x :distribution:packages:buildOssRpm `
3434
-x :distribution:packages:buildRpm `
3535

36-
exit $?
36+
exit $LastExitCode

0 commit comments

Comments
 (0)