Skip to content

Commit

Permalink
Fix the windows packaging tests exit code
Browse files Browse the repository at this point in the history
$? is a boolean and was used incorrectly
  • Loading branch information
alpar-t authored and mark-vieira committed Feb 7, 2020
1 parent 282e919 commit bc3ef9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/os.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ $ErrorActionPreference="Continue"
# 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
& .\gradlew.bat -g "C:\Users\$env:username\.gradle" --parallel --scan --console=plain destructiveDistroTest

exit $?
exit $LastExitCode

0 comments on commit bc3ef9b

Please sign in to comment.