-
Notifications
You must be signed in to change notification settings - Fork 10
/
install.ps1
45 lines (36 loc) · 1.18 KB
/
install.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env pwsh
# Copyright (c) 2023-2024 Zerops s.r.o. All rights reserved. MIT license.
$ErrorActionPreference = 'Stop'
if ($v) {
$Version = "v${v}"
}
if ($Args.Length -eq 1) {
$Version = $Args.Get(0)
}
$ZcliInstall = $env:ZCLI_INSTALL
$BinDir = if ($ZcliInstall) {
"${ZcliInstall}\bin"
} else {
"${Home}\.zerops\bin"
}
$ZcliExe = "$BinDir\zcli.exe"
$Target = 'win-x64'
$DownloadUrl = if (!$Version) {
"https://github.com/zeropsio/zcli/releases/latest/download/zcli-${Target}.exe"
} else {
"https://github.com/zeropsio/zcli/releases/download/${Version}/zcli-${Target}.exe"
}
if (!(Test-Path $BinDir)) {
New-Item $BinDir -ItemType Directory | Out-Null
}
curl.exe -Lo $ZcliExe $DownloadUrl
$User = [System.EnvironmentVariableTarget]::User
$Path = [System.Environment]::GetEnvironmentVariable('Path', $User)
if (!(";${Path};".ToLower() -like "*;${BinDir};*".ToLower())) {
[System.Environment]::SetEnvironmentVariable('Path', "${Path};${BinDir}", $User)
$Env:Path += ";${BinDir}"
}
Write-Output ""
Write-Output "ZCli was installed successfully to ${ZcliExe}"
Write-Output "Run 'zcli --help' to get started"
Write-Output "Stuck? Join our Discord https://discord.com/invite/WDvCZ54"