mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-08-02 23:12:51 +02:00
11 lines
413 B
PowerShell
11 lines
413 B
PowerShell
# Copyright The OpenTelemetry Authors
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
$ErrorActionPreference = "Stop"
|
|
trap { $host.SetShouldExit(1) }
|
|
|
|
$BAZELISK_VERSION="1.16.0"
|
|
$CWD=(Get-Item -Path ".\").FullName
|
|
(new-object System.Net.WebClient). `
|
|
DownloadFile("https://github.com/bazelbuild/bazelisk/releases/download/v$BAZELISK_VERSION/bazelisk-windows-amd64.exe",
|
|
"C:\windows\system32\bazel.exe")
|