File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/pages/get-started/bruno-basics Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -56,14 +56,14 @@ Bruno can be installed via direct download or through package managers on suppor
56
56
# Create keyrings directory
57
57
sudo mkdir -p /etc/apt/keyrings
58
58
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
61
61
62
62
# List existing keys (optional)
63
63
sudo gpg --list-keys
64
64
65
65
# 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
67
67
68
68
# Add the Bruno repository
69
69
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
You can’t perform that action at this time.
0 commit comments