Skip to content

Commit 05999d6

Browse files
authored
Merge pull request #435 from ganesh-bruno/fix/down-linux
updated download section for debian installation
2 parents 1a5b4e2 + 0a0777a commit 05999d6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pages/get-started/bruno-basics/download.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,14 @@ Bruno can be installed via direct download or through package managers on suppor
5656
# Create keyrings directory
5757
sudo mkdir -p /etc/apt/keyrings
5858

59-
# Update and install GPG
60-
sudo apt update && sudo apt install gpg
59+
# Update and install GPG and curl
60+
sudo apt update && sudo apt install gpg curl
6161

6262
# List existing keys (optional)
6363
sudo gpg --list-keys
6464

6565
# Add the Bruno repository key
66-
sudo gpg --no-default-keyring --keyring /etc/apt/keyrings/bruno.gpg --keyserver keyserver.ubuntu.com --recv-keys 9FA6017ECABE0266
66+
curl -fsSL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x9FA6017ECABE0266" | gpg --dearmor | sudo tee /etc/apt/keyrings/bruno.gpg > /dev/null
6767

6868
# Add the Bruno repository
6969
echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/bruno.gpg] http://debian.usebruno.com/ bruno stable" | sudo tee /etc/apt/sources.list.d/bruno.list

0 commit comments

Comments
 (0)