mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
Quote command in installation instructions
Zsh users that attempt to run the following command in our Ubuntu/Debian installation instructions: echo deb [signed-by=/etc/apt/keyrings/fpf-apt-tools-archive-keyring.gpg] \ https://packages.freedom.press/apt-tools-prod ${VERSION_CODENAME?} main \ | sudo tee /etc/apt/sources.list.d/fpf-apt-tools.list encounter the following error: zsh: no matches found: [signed-by=/etc/apt/keyrings/fpf-apt-tools-archive-keyring.gpg] Quote this command to ensure compatibility with other shells, and update our CI checks. Fixes #805
This commit is contained in:
parent
210405b9fd
commit
65776d8c05
2 changed files with 4 additions and 4 deletions
4
.github/workflows/check_repos.yml
vendored
4
.github/workflows/check_repos.yml
vendored
|
@ -58,8 +58,8 @@ jobs:
|
|||
- name: Add packages.freedom.press to our APT sources
|
||||
run: |
|
||||
. /etc/os-release
|
||||
echo deb [signed-by=/etc/apt/keyrings/fpf-apt-tools-archive-keyring.gpg] \
|
||||
https://packages.freedom.press/apt-tools-prod ${VERSION_CODENAME?} main \
|
||||
echo "deb [signed-by=/etc/apt/keyrings/fpf-apt-tools-archive-keyring.gpg] \
|
||||
https://packages.freedom.press/apt-tools-prod ${VERSION_CODENAME?} main" \
|
||||
| tee /etc/apt/sources.list.d/fpf-apt-tools.list
|
||||
|
||||
- name: Install Dangerzone
|
||||
|
|
|
@ -94,8 +94,8 @@ Add the URL of the repo in your APT sources:
|
|||
|
||||
```sh
|
||||
. /etc/os-release
|
||||
echo deb [signed-by=/etc/apt/keyrings/fpf-apt-tools-archive-keyring.gpg] \
|
||||
https://packages.freedom.press/apt-tools-prod ${VERSION_CODENAME?} main \
|
||||
echo "deb [signed-by=/etc/apt/keyrings/fpf-apt-tools-archive-keyring.gpg] \
|
||||
https://packages.freedom.press/apt-tools-prod ${VERSION_CODENAME?} main" \
|
||||
| sudo tee /etc/apt/sources.list.d/fpf-apt-tools.list
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue