Try quoting paths to make Windows caches works

This commit is contained in:
Micah Lee 2022-06-19 23:20:53 -04:00
parent fef5e3b2ec
commit 21a4f0ee01
No known key found for this signature in database
GPG Key ID: 403C2657CD994F73

View File

@ -138,7 +138,7 @@ jobs:
- run: - run:
name: Build obfs4proxy name: Build obfs4proxy
command: | 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" Write-Output "obfs4proxy already built"
} else { } else {
cd C:\Users\circleci\project\desktop cd C:\Users\circleci\project\desktop
@ -154,7 +154,7 @@ jobs:
- run: - run:
name: Build snowflake-client name: Build snowflake-client
command: | 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" Write-Output "snowflake already built"
} else { } else {
cd C:\Users\circleci\project\desktop cd C:\Users\circleci\project\desktop
@ -170,7 +170,7 @@ jobs:
- run: - run:
name: Build meek-client name: Build meek-client
command: | 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" Write-Output "snowflake already built"
} else { } else {
cd C:\Users\circleci\project\desktop cd C:\Users\circleci\project\desktop