summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2023-01-12 03:41:15 -0500
committerGitHub <noreply@github.com>2023-01-12 03:41:15 -0500
commitfffeb206de4a46cac7a1eb3179318fdaec16157e (patch)
tree1c6ae7ea5d5c9255dc9c8a0b92b03c90b3b9f1e6 /README.md
parent48cd29f2dd37c28dac7719a0fcf9886ef1cca681 (diff)
ci: follow .deb naming conventions (#969)
Change the .deb file generation back to following standard naming conventions.
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 10 insertions, 6 deletions
diff --git a/README.md b/README.md
index f404f3eb..b81d1ed5 100644
--- a/README.md
+++ b/README.md
@@ -42,7 +42,7 @@
- [Scoop](#scoop)
- [Chocolatey](#chocolatey)
- [winget](#winget)
- - [MSI](#MSI)
+ - [Windows installer](#windows-installer)
- [Manual installation](#manual-installation)
- [Binaries](#binaries)
- [Auto-completion](#auto-completion)
@@ -155,12 +155,16 @@ A `.deb` file is provided on each [stable release](https://github.com/ClementTsa
```bash
# x86-64
-curl -LO https://github.com/ClementTsang/bottom/releases/download/0.7.1/bottom_x86_64-unknown-linux-gnu.deb
-sudo dpkg -i bottom_x86_64-unknown-linux-gnu.deb
+curl -LO https://github.com/ClementTsang/bottom/releases/download/0.7.1/bottom_0.7.1_amd64.deb
+sudo dpkg -i bottom_0.7.1_amd64.deb
# ARM64
-curl -LO https://github.com/ClementTsang/bottom/releases/download/0.7.1/bottom_aarch64-unknown-linux-gnu.deb
-sudo dpkg -i bottom_aarch64-unknown-linux-gnu.deb
+curl -LO https://github.com/ClementTsang/bottom/releases/download/0.7.1/bottom_0.7.1_arm64.deb
+sudo dpkg -i bottom_0.7.1_arm64.deb
+
+# ARM
+curl -LO https://github.com/ClementTsang/bottom/releases/download/0.7.1/bottom_0.7.1_armhf.deb
+sudo dpkg -i bottom_0.7.1_armhf.deb
```
### Snap
@@ -256,7 +260,7 @@ winget install Clement.bottom
You can uninstall via Control Panel, Options, or `winget --uninstall bottom`.
-### MSI
+### Windows installer
You can also manually install bottom as a Windows program by going to the [latest release](https://github.com/ClementTsang/bottom/releases/latest)
and installing via the `.msi` file.