From 93848d5a1cb5e6e809b7a905fde0ea9ff50db1d7 Mon Sep 17 00:00:00 2001 From: Gator96100 Date: Fri, 18 Sep 2020 18:24:19 +0200 Subject: [PATCH] Fixed paths --- appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 3ac706140..81dd22f8f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -205,11 +205,11 @@ build_script: #Windows Subsystem for Linux (WSL) Write-Host "---------- WSL make ----------" -ForegroundColor Yellow - cd $env:appveyor_build_folder + cd $env:wsl_git_path $TestTime=[System.Environment]::TickCount ExecWSLCmd "make clean;make V=1" #some checks - if(!(Test-Path "$env:proxspace_home_path\$pmfolder\client\proxmark3")){ + if(!(Test-Path "$env:wsl_git_path\client\proxmark3")){ throw "Main file proxmark3 not exists." } @@ -226,7 +226,7 @@ build_script: ExecWSLCmd 'make clean' Write-Host "---------- WSL cmake ----------" -ForegroundColor Yellow $TestTime=[System.Environment]::TickCount - ExecWSLCmd 'rm -rf client/build;mkdir -p client/build; cd client/build; cmake ..; make VERBOSE=1;' + ExecWSLCmd 'mkdir -p client/build; cd client/build; cmake ..; make VERBOSE=1;' Write-Host "---------- WSL cmake tests ----------" -ForegroundColor Yellow ExecWSLCmd './tools/pm3_tests.sh --clientbin client/build/proxmark3 client' ExecCheck "WSL cmake Tests"