2023-10-31 12:20:46 +01:00
|
|
|
|
<#
|
2021-08-24 21:46:11 +02:00
|
|
|
|
.SYNOPSIS
|
2021-09-24 17:19:49 +02:00
|
|
|
|
Installs GitHub CLI
|
2021-10-04 21:29:23 +02:00
|
|
|
|
.DESCRIPTION
|
2023-08-07 19:52:34 +02:00
|
|
|
|
This PowerShell script installs the GitHub command-line interface (CLI).
|
2021-08-24 21:46:11 +02:00
|
|
|
|
.EXAMPLE
|
2023-08-06 21:35:36 +02:00
|
|
|
|
PS> ./install-github-cli.ps1
|
2023-08-07 19:52:34 +02:00
|
|
|
|
⏳ Installing GitHub CLI...
|
|
|
|
|
✔ Installation of GitHub CLI took 17 sec
|
2021-08-24 21:46:11 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2022-01-29 12:47:46 +01:00
|
|
|
|
.NOTES
|
2022-09-06 21:42:04 +02:00
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
2021-08-24 21:46:11 +02:00
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
try {
|
2023-08-07 19:52:34 +02:00
|
|
|
|
"⏳ Installing GitHub CLI..."
|
2021-08-24 21:46:11 +02:00
|
|
|
|
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
|
|
|
|
|
|
|
|
|
if ($IsMacOS) {
|
2023-08-06 21:35:36 +02:00
|
|
|
|
& brew install gh
|
2021-08-24 21:46:11 +02:00
|
|
|
|
} elseif ($IsLinux) {
|
2023-08-07 19:52:34 +02:00
|
|
|
|
& sudo apt install gh
|
2023-08-06 21:35:36 +02:00
|
|
|
|
} else {
|
|
|
|
|
& winget install --id GitHub.cli
|
2023-08-07 19:52:34 +02:00
|
|
|
|
}
|
2021-08-24 21:46:11 +02:00
|
|
|
|
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
2023-08-07 19:52:34 +02:00
|
|
|
|
"✔️ Installation of GitHub CLI took $Elapsed sec"
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2021-08-24 21:46:11 +02:00
|
|
|
|
} catch {
|
2022-04-13 12:06:32 +02:00
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-08-24 21:46:11 +02:00
|
|
|
|
exit 1
|
|
|
|
|
}
|