Skip to content
This repository has been archived by the owner on Feb 21, 2023. It is now read-only.

Commit

Permalink
docs: Update apt instructions (#107)
Browse files Browse the repository at this point in the history
* README: Save APT repo to redbubble.list.

yak isn't the only thing we might distribute.

* README: apt-key is deprecated.

`apt-key` is deprecated; the suggestion is to manage keyring files in the /etc/apt/trusted.gpg.d
folder instead, see apt-key(8).

Let's update the README to reflect that, since folks were getting a warning when following the
previous instructions.
  • Loading branch information
toothbrush authored Oct 15, 2021
1 parent 5964013 commit 60ff68c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ running:
```sh
sudo apt install curl gnupg2
# This is the Redbubble GPG key, to verify releases:
curl https://raw.githubusercontent.com/redbubble/yak/master/static/delivery-engineers.pub.asc | sudo apt-key add -
echo "deb http://apt.redbubble.com/ stable main" | sudo tee /etc/apt/sources.list.d/yak.list
curl -Lq https://raw.githubusercontent.com/redbubble/yak/master/static/delivery-engineers.pub.asc | sudo gpg --no-default-keyring --import --keyring gnupg-ring:/etc/apt/trusted.gpg.d/redbubble.gpg
sudo chmod a+r /etc/apt/trusted.gpg.d/redbubble.gpg
echo "deb http://apt.redbubble.com/ stable main" | sudo tee /etc/apt/sources.list.d/redbubble.list
sudo apt update
sudo apt install yak
```
Expand Down

0 comments on commit 60ff68c

Please sign in to comment.