Fixed || not being recognised in powershell script

This commit is contained in:
Snaipe 2015-09-06 01:45:10 +02:00
parent b3d8ed244f
commit 3f8e179a74

View file

@ -64,7 +64,8 @@ before_deploy:
test_script:
- ps: |
if ($env:Compiler -eq "mingw") {
make test || type Testing/Temporary/LastTest.log
try { make test }
catch { type Testing/Temporary/LastTest.log }
}
#after_test: