bruno
bruno copied to clipboard
Apt instalation instruction - make 64bit explicit to avoid warning
arch=amd64 Since all Bruno releases are 64bit, there is no reason to skip this argument. Without it, apt gives a warning on every run:
apt update
...
Hit:9 http://debian.usebruno.com bruno InRelease
...
N: Skipping acquire of configured file 'stable/binary-i386/Packages' as repository 'http://debian.usebruno.com bruno InRelease' doesn't support architecture 'i386'
By adding the argument in this way:
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
The warning goes away as it should.