Skip to content

Commit af191d3

Browse files
author
Steve Lee (POWERSHELL HE/HIM) (from Dev Box)
committed
quote variables
1 parent 1b1ddfa commit af191d3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.pipelines/DSC-Official.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ extends:
117117
buildName: x86_64-pc-windows-msvc
118118
signSrcPath: '$(signSrcPath)'
119119
PackageRoot: '$(PackageRoot)'
120-
token: $(AzToken)
121-
rustSDK: $(Rust.SDK)
120+
token: '$(AzToken)'
121+
rustSDK: '$(Rust.SDK)'
122122

123123
- job: BuildWin_arm64
124124
dependsOn: SetPackageVersion
@@ -137,8 +137,8 @@ extends:
137137
buildName: aarch64-pc-windows-msvc
138138
signSrcPath: '$(signSrcPath)'
139139
PackageRoot: '$(PackageRoot)'
140-
token: $(AzToken)
141-
rustSDK: $(Rust.SDK)
140+
token: '$(AzToken)'
141+
rustSDK: '$(Rust.SDK)'
142142

143143
- job: CreateMsixBundle
144144
dependsOn:
@@ -288,7 +288,7 @@ extends:
288288
if ((openssl version -d) -match 'OPENSSLDIR: "(?<dir>.*?)"') {
289289
$env:OPENSSL_LIB_DIR = $matches['dir']
290290
}
291-
$header = "Bearer " + $(AzToken)
291+
$header = "Bearer $(AzToken)"
292292
$env:CARGO_REGISTRIES_POWERSHELL_TOKEN = $header
293293
$env:CARGO_REGISTRIES_POWERSHELL_CREDENTIAL_PROVIDER = 'cargo:token'
294294
./build.ps1 -Release -Architecture aarch64-unknown-linux-musl

0 commit comments

Comments
 (0)