Skip to content

Commit

Permalink
Fix typo in the chocolatey generation script
Browse files Browse the repository at this point in the history
It's releases.bazel.build where we share the release candidates, not
release.bazel.build.

RELNOTES: None.
PiperOrigin-RevId: 164694701
  • Loading branch information
hlopko committed Aug 9, 2017
1 parent 17f97e9 commit 2f43b7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/packages/chocolatey/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ if ($mode -eq "release") {
} elseif ($mode -eq "rc") {
$tvVersion = "$($version)-rc$($rc)"
$tvFilename = "bazel-$($version)rc$($rc)-windows-x86_64.zip"
$tvUri = "https://release.bazel.build/$($version)/rc$($rc)/$($tvFilename)"
$tvReleaseNotesUri = "https://release.bazel.build/$($version)/rc$($rc)/index.html"
$tvUri = "https://releases.bazel.build/$($version)/rc$($rc)/$($tvFilename)"
$tvReleaseNotesUri = "https://releases.bazel.build/$($version)/rc$($rc)/index.html"
} elseif ($mode -eq "local") {
$tvVersion = $version
$tvFilename = "bazel-$($tvVersion)-windows-x86_64.zip"
Expand Down

0 comments on commit 2f43b7c

Please sign in to comment.