From 1117f6ae4b25810c5fd65c1263671922868293f0 Mon Sep 17 00:00:00 2001 From: Oj Date: Tue, 12 Apr 2022 21:42:08 +0100 Subject: [PATCH] [CI > Win] Fix error in setup manifest download --- .github/workflows/nightly.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index fba1f76..7cf0db3 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -98,7 +98,7 @@ jobs: - name: Setup Client run: | # Download latest client from updater v2 and extract (manifest -> brotli -> tar) - wget "$(curl https://discord.com/api/updates/distributions/app/manifests/latest\?channel\=canary\&platform\=win\&arch\=x86 | python -c 'import json,sys;print(json.load(sys.stdin)["full"]["url"])')" + wget "$(curl 'https://discord.com/api/updates/distributions/app/manifests/latest?channel=canary&platform=win&arch=x86' | python -c 'import json,sys;print(json.load(sys.stdin)["full"]["url"])')" node -e "fs.writeFileSync('full.tar', zlib.brotliDecompressSync(fs.readFileSync('full.distro')))" tar xf full.tar