about summary refs log tree commit diff stats
path: root/docs/COMPILE.md
diff options
context:
space:
mode:
authorSevan Janiyan <venture37@geeklan.co.uk>2023-03-23 07:05:15 +0000
committerGitHub <noreply@github.com>2023-03-23 08:05:15 +0100
commitf087afd796500f310eb493483afc350c40567e55 (patch)
treeed95076e9c8938b47932db8e0a4a1be7d27e38bf /docs/COMPILE.md
parent91a230b38dcdffd446e06e0a52f139ebabd104ab (diff)
downloadbox64-f087afd796500f310eb493483afc350c40567e55.tar.gz
box64-f087afd796500f310eb493483afc350c40567e55.zip
docs/COMPILE.md: Use trusted.gpg.d (#620)
Installing the keys in the system location will likely cause fallout in upgrades.
Install into /etc/apt/trusted.gpg.d where it's commonly expected.
Diffstat (limited to 'docs/COMPILE.md')
-rwxr-xr-xdocs/COMPILE.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/COMPILE.md b/docs/COMPILE.md
index 919506ea..b050b848 100755
--- a/docs/COMPILE.md
+++ b/docs/COMPILE.md
@@ -6,7 +6,7 @@ You can use [@ryanfortner](https://github.com/ryanfortner)'s apt repository to i
 

 ```

 sudo wget https://ryanfortner.github.io/box64-debs/box64.list -O /etc/apt/sources.list.d/box64.list

-wget -O- https://ryanfortner.github.io/box64-debs/KEY.gpg | sudo gpg --dearmor -o /usr/share/keyrings/box64-debs-archive-keyring.gpg 

+wget -qO- https://ryanfortner.github.io/box64-debs/KEY.gpg | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/box64-debs-archive-keyring.gpg

 sudo apt update && sudo apt install box64 -y

 ```