Skip to content

Commit

Permalink
kick
Browse files Browse the repository at this point in the history
  • Loading branch information
Kim Neunert committed May 28, 2024
1 parent 5c4f5c6 commit ce07154
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions utils/generate_downloadpage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ install_gh_macos() {
# Function to install GitHub CLI on Linux
install_gh_linux() {
echo "Installing GitHub CLI using official script..."
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg
sudo chmod go+r /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
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null
apt update
apt install gh
}

function prereq {
Expand Down

0 comments on commit ce07154

Please sign in to comment.