docs: update apt/yum installation instructions

This commit is contained in:
Ayman Bagabas 2022-10-06 17:30:43 -04:00
parent 45e930c54e
commit 0bd02434a3
No known key found for this signature in database
GPG key ID: 758FD42981CE1778

View file

@ -110,7 +110,8 @@ pacman -S gum
nix-env -iA nixpkgs.gum
# Debian/Ubuntu
echo 'deb [trusted=yes] https://repo.charm.sh/apt/ /' | sudo tee /etc/apt/sources.list.d/charm.list
echo "deb https://repo.charm.sh/apt/ * *" | sudo tee /etc/apt/sources.list.d/charm.list
curl https://repo.charm.sh/apt/gpg.key | sudo apt-key add -
sudo apt update && sudo apt install gum
# Fedora
@ -118,7 +119,8 @@ echo '[charm]
name=Charm
baseurl=https://repo.charm.sh/yum/
enabled=1
gpgcheck=0' | sudo tee /etc/yum.repos.d/charm.repo
gpgcheck=1
gpgkey=https://repo.charm.sh/yum/gpg.key' | sudo tee /etc/yum.repos.d/charm.repo
sudo yum install gum
```