Browse Source

Fix the windows packaging tests exit code

$? is a boolean and was used incorrectly
Alpar Torok 6 năm trước cách đây
mục cha
commit
73cd9e0c1b
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      .ci/os.ps1

+ 1 - 1
.ci/os.ps1

@@ -33,4 +33,4 @@ $ErrorActionPreference="Continue"
    -x :distribution:packages:buildOssRpm `
    -x :distribution:packages:buildRpm `
 
-exit $?
+exit $LastExitCode