Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use arch=amd64 in APT sources to avoid warnings on multiarch systems. #1372

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion how-to-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 69AD12704E71A4803DCA3A6
- Add the repo to your apt source list :

```bash
echo "deb https://download.zulip.com/desktop/apt stable main" |
echo "deb [arch=amd64] https://download.zulip.com/desktop/apt stable main" |
sudo tee -a /etc/apt/sources.list.d/zulip.list
```

Expand Down
2 changes: 1 addition & 1 deletion packaging/deb-apt.list
Original file line number Diff line number Diff line change
@@ -1 +1 @@
deb https://download.zulip.com/desktop/apt stable main
deb [arch=amd64] https://download.zulip.com/desktop/apt stable main