aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2022-06-19 23:20:53 -0400
committerMicah Lee <micah@micahflee.com>2022-06-19 23:20:53 -0400
commit21a4f0ee01b9f8f1d9c1ca01861fb967e12a9e68 (patch)
tree9c98ab8c87150ee8d1ecf8c8590c759c1cebada5
parentfef5e3b2ec7b57a622e41a421fca14de766554c1 (diff)
downloadonionshare-21a4f0ee01b9f8f1d9c1ca01861fb967e12a9e68.tar.gz
onionshare-21a4f0ee01b9f8f1d9c1ca01861fb967e12a9e68.zip
Try quoting paths to make Windows caches works
-rw-r--r--.circleci/config.yml6
1 files 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