diff options
| author | Sevan Janiyan <venture37@geeklan.co.uk> | 2023-03-23 07:05:15 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-23 08:05:15 +0100 |
| commit | f087afd796500f310eb493483afc350c40567e55 (patch) | |
| tree | ed95076e9c8938b47932db8e0a4a1be7d27e38bf /docs/COMPILE.md | |
| parent | 91a230b38dcdffd446e06e0a52f139ebabd104ab (diff) | |
| download | box64-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-x | docs/COMPILE.md | 2 |
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 ``` |