Skip to content

Commit 5abe850

Browse files
committed
Don't use single quotes when trying to interpolate in powershell
1 parent b6c83a8 commit 5abe850

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eng/pipelines/templates/stages/archetype-rust-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ stages:
106106
107107
Write-Host "Publishing package '$crateName'"
108108
109-
$cargoBin = '$(Pipeline.Workspace)/drop/Packages/$crateName.bin'
109+
$cargoBin = "$(Pipeline.Workspace)/drop/Packages/$crateName.bin"
110110
111111
# https://doc.rust-lang.org/cargo/reference/registry-web-api.html#publish
112112
Invoke-WebRequest -Method Put -Uri 'https://crates.io/api/v1/crates/new' `

0 commit comments

Comments
 (0)