From abba8d73d72060b83911ca35d0a0aa9828a624cc Mon Sep 17 00:00:00 2001 From: cuu Date: Thu, 13 Jan 2022 23:11:26 +0800 Subject: [PATCH 1/2] update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cb4a686..9c44294 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,6 @@ ``` wget -O - https://raw.githubusercontent.com/clockworkpi/apt/main/debian/KEY.gpg | sudo apt-key add - -echo "deb https://raw.githubusercontent.com/clockworkpi/apt/main/debian/ stable main" | sudo tee -a /etc/apt/sources.list.d/clockworkpi.list +echo "deb https://raw.githubusercontent.com/clockworkpi/apt/main/debian/ stable main" | sudo tee /etc/apt/sources.list.d/clockworkpi.list ``` From 3fa46ebd7cc14895aa8e2302476c83d8cf482dcf Mon Sep 17 00:00:00 2001 From: cuu Date: Mon, 9 Jan 2023 15:05:37 +0800 Subject: [PATCH 2/2] update readme --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9c44294..dd10383 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,9 @@ # apt ``` -wget -O - https://raw.githubusercontent.com/clockworkpi/apt/main/debian/KEY.gpg | sudo apt-key add - +#wget -O - https://raw.githubusercontent.com/clockworkpi/apt/main/debian/KEY.gpg | sudo apt-key add - + +wget -q -O- https://raw.githubusercontent.com/clockworkpi/apt/main/debian/KEY.gpg | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/clockworkpi.gpg echo "deb https://raw.githubusercontent.com/clockworkpi/apt/main/debian/ stable main" | sudo tee /etc/apt/sources.list.d/clockworkpi.list ```