mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
11 lines
415 B
Plaintext
11 lines
415 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | \
|
||
|
sudo dd of=/etc/apt/trusted.gpg.d/githubcli-archive-keyring.gpg
|
||
|
|
||
|
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/trusted.gpg.d/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
|