From 1237ee6bf0b297e6bf16080656560084db84eb37 Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Thu, 6 Oct 2022 17:20:42 -0400 Subject: [PATCH] docs: update apt/yum installation instructions --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 02443a4..a15f995 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,8 @@ choco install glow pkg install glow # 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 glow # Fedora @@ -69,7 +70,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 glow ```