-
Notifications
You must be signed in to change notification settings - Fork 1
/
install.ps1
54 lines (41 loc) · 1.39 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
46
47
48
49
50
51
52
53
54
#!/usr/bin/env pwsh
# Copyright 2022 Laurean Ray Bahala. All rights reserved. MIT license.
# TODO(everyone): Keep this script simple and easily auditable.
$ErrorActionPreference = 'Stop'
if ($v) {
$Version = "v${v}"
}
if ($args.Length -eq 1) {
$Version = $args.Get(0)
}
$ClibgenInstall = $env:CLIBGEN_INSTALL
$BinDir = if ($ClibgenInstall) {
"$ClibgenInstall\bin"
} else {
"$Home\.clibgen\bin"
}
$ClibgenZip = "$BinDir\clibgen.zip"
$ClibgenExe = "$BinDir\clibgen.exe"
$Target = 'windows-amd64'
# GitHub requires TLS 1.2
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$ClibgenUri = if (!$Version) {
"https://github.com/laureanray/clibgen/releases/latest/download/clibgen_${Target}.zip"
} else {
"https://github.com/laureanray/clibgen/releases/download/${Version}/clibgen_${Target}.zip"
}
Write-Output $ClibgenUri
if (!(Test-Path $BinDir)) {
New-Item $BinDir -ItemType Directory | Out-Null
}
curl.exe -Lo $ClibgenZip $ClibgenUri
tar.exe xf $ClibgenZip -C $BinDir
Remove-Item $ClibgenZip
$User = [EnvironmentVariableTarget]::User
$Path = [Environment]::GetEnvironmentVariable('Path', $User)
if (!(";$Path;".ToLower() -like "*;$BinDir;*".ToLower())) {
[Environment]::SetEnvironmentVariable('Path', "$Path;$BinDir", $User)
$Env:Path += ";$BinDir"
}
Write-Output "Clibgen was installed successfully to $ClibgenExe"
Write-Output "Run 'clibgen --help' to get started"