Skip to content

Commit 3bbbf53

Browse files
committed
Fix env variable name
Signed-off-by: David Calavera <[email protected]>
1 parent 5e9ab42 commit 3bbbf53

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ environment:
88
GRADLE_OPTS: -Dorg.gradle.daemon=false
99
nodejs_version: "14.17.6"
1010
CARGO_LAMBDA_VERSION: "v0.6.1"
11-
ZIGLANG_VERSION: "0.9.1"
11+
ZIG_VERSION: "0.9.1"
1212

1313
matrix:
1414
- PYTHON: "C:\\Python36-x64"
@@ -75,9 +75,9 @@ for:
7575
- ps: "&powershell -NoProfile -ExecutionPolicy unrestricted -Command \"[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; &([scriptblock]::Create((Invoke-WebRequest -UseBasicParsing 'https://dot.net/v1/dotnet-install.ps1'))) -Version 6.0.200 -InstallDir 'C:\\Program Files\\dotnet\\'\""
7676

7777
# install Zig to cross compile Rust functions
78-
- ps: Invoke-WebRequest -Uri https://ziglang.org/download/$env:ZIGLANG_VERSION/zig-windows-x86_64-$env:ZIGLANG_VERSION.zip -OutFile C:\Users\appveyor\ziglang.zip
78+
- ps: Invoke-WebRequest -Uri https://ziglang.org/download/$env:ZIG_VERSION/zig-windows-x86_64-$env:ZIG_VERSION.zip -OutFile C:\Users\appveyor\ziglang.zip
7979
- ps: Expand-Archive -DestinationPath C:\Users\appveyor\ C:\Users\appveyor\ziglang.zip
80-
- set PATH=%PATH%;C:\Users\appveyor\zig-windows-x86_64-%ZIGLANG_VERSION%
80+
- set PATH=%PATH%;C:\Users\appveyor\zig-windows-x86_64-%ZIG_VERSION%
8181
- "zig version"
8282
- "clang --version"
8383

0 commit comments

Comments
 (0)