Skip to content

Commit ae5d5ed

Browse files
committed
Fix PowerShell syntax
1 parent c426cae commit ae5d5ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ test_script:
5656
- ps: |
5757
if($env:BUILD_MSI) {
5858
cd src\rustup-win-installer
59-
cargo build --release --target %TARGET%
59+
cargo build --release --target $env:TARGET
6060
cd msi
61-
.\build.ps1 -Target %TARGET%
61+
.\build.ps1 -Target $env:TARGET
6262
cd ..\..\..
6363
if($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
6464
}

0 commit comments

Comments
 (0)