From 6c8c87fe28fca64cdd8a4c9b6159054577a387f7 Mon Sep 17 00:00:00 2001 From: janos-r <30606201+janos-r@users.noreply.github.com> Date: Wed, 10 Apr 2024 06:09:07 +0900 Subject: [PATCH] Fix sources.list.d deb: make 64bit explicit to avoid warning (#1925) Since all Bruno releases are 64bit, there is no reason to skip this argument. Without it, apt gives a warning on every run: `N: Skipping acquire of configured file 'stable/binary-i386/Packages' as repository 'http://debian.usebruno.com bruno InRelease' doesn't support architecture 'i386'` --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 75591aafc..47a8f2ccd 100644 --- a/readme.md +++ b/readme.md @@ -63,7 +63,7 @@ flatpak install com.usebruno.Bruno sudo mkdir -p /etc/apt/keyrings sudo gpg --no-default-keyring --keyring /etc/apt/keyrings/bruno.gpg --keyserver keyserver.ubuntu.com --recv-keys 9FA6017ECABE0266 -echo "deb [signed-by=/etc/apt/keyrings/bruno.gpg] http://debian.usebruno.com/ bruno stable" | sudo tee /etc/apt/sources.list.d/bruno.list +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 sudo apt update sudo apt install bruno