Skip to content

Commit

Permalink
🐖 mommy piggybacks an update to the apt code~
Browse files Browse the repository at this point in the history
  • Loading branch information
FWDekker committed Apr 15, 2024
1 parent 842fcca commit a15aa65
Showing 1 changed file with 11 additions and 14 deletions.
25 changes: 11 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ find your operating system and package manager for the right instructions~
the repository supports all architectures and suites~

```shell
sudo curl -fsSo /etc/apt/sources.list.d/mommy.sources https://raw.githubusercontent.com/FWDekker/apt-mommy/main/deb/mommy.sources
sudo chmod 644 /etc/apt/sources.list.d/mommy.sources
sudo curl -fsSo /etc/apt/sources.list.d/mommy.sources \
https://raw.githubusercontent.com/FWDekker/apt-mommy/main/deb/mommy.sources

sudo apt update
sudo apt install mommy
Expand All @@ -111,21 +111,18 @@ find your operating system and package manager for the right instructions~
the repository supports all architectures and suites~

[check this page for details on what this code does](https://stackoverflow.com/a/71384057/)~
```shell
sudo mkdir -m 0755 -p /etc/apt/keyrings/
```shell
sudo mkdir -m 0755 -p /etc/apt/keyrings/

wget -O- https://raw.githubusercontent.com/FWDekker/apt-mommy/main/deb/Release.key | \
gpg --dearmor | \
sudo tee /etc/apt/keyrings/mommy.gpg > /dev/null;
sudo chmod 644 /etc/apt/keyrings/EXAMPLE.gpg
curl -fsSL https://raw.githubusercontent.com/FWDekker/apt-mommy/main/deb/Release.key |
sudo gpg --dearmor -o /etc/apt/keyrings/mommy.gpg

echo "deb [signed-by=/etc/apt/keyrings/mommy.gpg] https://raw.githubusercontent.com/FWDekker/apt-mommy/main/deb/ ./" | \
sudo tee /etc/apt/sources.list.d/mommy.list > /dev/null;
sudo chmod 644 /etc/apt/sources.list.d/EXAMPLE.list
echo "deb [signed-by=/etc/apt/keyrings/mommy.gpg] https://raw.githubusercontent.com/FWDekker/apt-mommy/main/deb/ ./" |
sudo tee /etc/apt/sources.list.d/mommy.list > /dev/null

sudo apt update
sudo apt install mommy
```
sudo apt update
sudo apt install mommy
```
* **homebrew** (automatic updates)
installs from the [mommy tap](https://github.com/FWDekker/homebrew-mommy).
(requires [brew](https://brew.sh/).)
Expand Down

0 comments on commit a15aa65

Please sign in to comment.