Skip to content

Commit

Permalink
Added apt update command to linux install docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
srgk26 committed Mar 17, 2023
1 parent d905165 commit 239a515
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/install_linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ our release schedule.
Install:

```bash
type -p curl >/dev/null || sudo apt install curl -y
type -p curl >/dev/null || (sudo apt update && sudo apt install curl -y)
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo 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 \
Expand Down

0 comments on commit 239a515

Please sign in to comment.