Skip to content

Commit 16706fc

Browse files
committed
Use double quotes
1 parent 4733774 commit 16706fc

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.ado/build-template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ extends:
189189
BEACHBALL_BRANCH: $(BeachBallBranchName)
190190

191191
# 6. Bump versions via prepare-release (Developer builds only)
192-
- pwsh: npx prepare-release --bump-only --branch $env:BEACHBALL_BRANCH --no-color
192+
- pwsh: npx prepare-release --bump-only --branch "$env:BEACHBALL_BRANCH" --no-color
193193
displayName: Bump versions (prepare-release --bump-only)
194194
condition: and(succeeded(), eq(variables['detectScenario.isReleaseBuild'], 'False'))
195195
env:

.ado/prepare-release-bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
env:
7676
SOURCE_BRANCH_NAME: $(Build.SourceBranchName)
7777

78-
- pwsh: npx prepare-release --branch $env:TARGET_BRANCH --no-color
78+
- pwsh: npx prepare-release --branch "$env:TARGET_BRANCH" --no-color
7979
displayName: Prepare Release
8080
env:
8181
GH_TOKEN: $(GitHubOAuthToken)

.ado/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ extends:
272272
steps:
273273
- task: NuGetToolInstaller@1
274274
displayName: 'Use NuGet'
275-
- pwsh: nuget.exe SetApiKey $env:NUGET_API_KEY
275+
- pwsh: nuget.exe SetApiKey "$env:NUGET_API_KEY"
276276
displayName: NuGet SetApiKey (nuget.org)
277277
workingDirectory: $(Pipeline.Workspace)/ReactWindows-final-nuget
278278
env:

0 commit comments

Comments
 (0)