From 990d33e109c35bd69fb5d0e32dac9b9e65b3e30b Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Mon, 8 Jun 2020 10:21:17 +0200 Subject: [PATCH] fix: appveyor checks for bz2 --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 777dcb86d..a97a65276 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -204,7 +204,7 @@ build_script: } - if(!(Test-Path C:\ProxSpace\pm3\client\resources\hardnested_tables\*.bin.z)){ + if(!(Test-Path C:\ProxSpace\pm3\client\resources\hardnested_tables\*.bin.bz2)){ throw "Files in client\resources\hardnested_tables is not exists." @@ -371,7 +371,7 @@ test_script: ExecTest "arm recovery image exists" "proxmark3_recovery.bin" {Test-Path C:\ProxSpace\pm3\Release\share\proxmark3\firmware\proxmark3_recovery.bin} - ExecTest "hardnested tables exists" "hardnested" {Test-Path C:\ProxSpace\pm3\Release\share\proxmark3\resources\hardnested_tables\*.z} + ExecTest "hardnested tables exists" "hardnested" {Test-Path C:\ProxSpace\pm3\Release\share\proxmark3\resources\hardnested_tables\*.bz2} ExecTest "release exists" "release.zip" {Test-Path C:\ProxSpace\release.zip}