PowerShell/Scripts/install-github-cli.ps1

33 lines
977 B
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
2021-08-24 21:46:11 +02:00
.SYNOPSIS
install-github-cli.ps1
.DESCRIPTION
2021-09-24 17:19:49 +02:00
Installs GitHub CLI
2021-08-24 21:46:11 +02:00
.EXAMPLE
2021-09-24 17:19:49 +02:00
PS> ./install-github-cli
2021-08-29 17:50:03 +02:00
.NOTES
Author: Markus Fleschutz · License: CC0
2021-08-24 21:46:11 +02:00
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
$StopWatch = [system.diagnostics.stopwatch]::startNew()
if ($IsMacOS) {
brew install gh
} elseif ($IsLinux) {
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo gpg --dearmor -o /usr/share/keyrings/githubcli-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null
sudo apt update
sudo apt install gh
}
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
"✔️ installed GitHub CLI in $Elapsed sec"
2021-09-27 10:09:45 +02:00
exit 0 # success
2021-08-24 21:46:11 +02:00
} catch {
2021-09-16 20:19:10 +02:00
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
2021-08-24 21:46:11 +02:00
exit 1
}