From 21a4f0ee01b9f8f1d9c1ca01861fb967e12a9e68 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Sun, 19 Jun 2022 23:20:53 -0400 Subject: [PATCH] Try quoting paths to make Windows caches works --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 00ac65fa..560ccf0e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -138,7 +138,7 @@ jobs: - run: name: Build obfs4proxy command: | - if ((Test-Path -Path C:\Users\circleci\project\desktop\onionshare\resources\tor\obfs4proxy.exe) -eq $True) { + if ((Test-Path -Path 'C:\Users\circleci\project\desktop\onionshare\resources\tor\obfs4proxy.exe') -eq $True) { Write-Output "obfs4proxy already built" } else { cd C:\Users\circleci\project\desktop @@ -154,7 +154,7 @@ jobs: - run: name: Build snowflake-client command: | - if ((Test-Path -Path C:\Users\circleci\project\desktop\onionshare\resources\tor\snowflake-client.exe) -eq $True) { + if ((Test-Path -Path 'C:\Users\circleci\project\desktop\onionshare\resources\tor\snowflake-client.exe') -eq $True) { Write-Output "snowflake already built" } else { cd C:\Users\circleci\project\desktop @@ -170,7 +170,7 @@ jobs: - run: name: Build meek-client command: | - if ((Test-Path -Path C:\Users\circleci\project\desktop\onionshare\resources\tor\meek-client.exe) -eq $True) { + if ((Test-Path -Path 'C:\Users\circleci\project\desktop\onionshare\resources\tor\meek-client.exe') -eq $True) { Write-Output "snowflake already built" } else { cd C:\Users\circleci\project\desktop