From 3f8e179a74813ae8f68e88a81e30ffc0d4a7c4c8 Mon Sep 17 00:00:00 2001 From: Snaipe Date: Sun, 6 Sep 2015 01:45:10 +0200 Subject: [PATCH] Fixed || not being recognised in powershell script --- appveyor.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 677c1d0..b77410c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -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: