Fix the windows packaging tests exit code

$? is a boolean and was used incorrectly
This commit is contained in:
Alpar Torok 2019-10-07 15:33:25 +03:00 committed by Mark Vieira
parent 282e919607
commit bc3ef9b8df
No known key found for this signature in database
GPG Key ID: CA947EF7E6D4B105
1 changed files with 1 additions and 1 deletions

View File

@ -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