Skip to content

Commit 51cce84

Browse files
committed
docs: fix incorrect flatpak command
use `uname -m` (machine, e.g. "x86_64") instead of `uname -p` (processor).
1 parent d631dc1 commit 51cce84

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616
- Update pypi packages (@MightyCreak)
1717
- Add pre-commit git hooks to run linters (@MightyCreak)
1818

19+
### Fixed
20+
21+
- Docs: fix incorrect flatpak command to install runtime SDK (@MightyCreak)
22+
1923
## 0.9.0 - 2024-01-13
2024

2125
### Changed

docs/developers/developers-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ pip3 install -r requirements.dev.txt
8181
To build, test and install Diffuse locally:
8282

8383
```sh
84-
flatpak install runtime/org.gnome.Sdk/$(uname -p)/44
84+
flatpak install runtime/org.gnome.Sdk/$(uname -m)/44
8585
flatpak-builder --user --install build-flatpak io.github.mightycreak.Diffuse.yml
8686
```
8787

0 commit comments

Comments
 (0)