aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-03-18 13:00:45 -0400
committerJoshua M. Boniface <joshua@boniface.me>2024-03-18 13:00:45 -0400
commit1e9b7eb151436979cec969f5f144e83a6bda9fa9 (patch)
tree25e7d73b986708016fbcfe3ae403b4b19ee07bfd
parentAdd examples to quickstart (diff)
downloadjellyfin-packaging-1e9b7eb151436979cec969f5f144e83a6bda9fa9.tar.gz
jellyfin-packaging-1e9b7eb151436979cec969f5f144e83a6bda9fa9.tar.bz2
jellyfin-packaging-1e9b7eb151436979cec969f5f144e83a6bda9fa9.zip
Fix incorrect ref
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 6b93bad..0b44ff6 100644
--- a/README.md
+++ b/README.md
@@ -70,7 +70,7 @@ If you want a non-Docker image output (`.deb`, `tar`/`zip` archive, etc.) follow
* The third argument is, for all platforms except `portable` (DotNET portable), the architecture you want to build for. For each platform, the available architectures can be found as the keys under `archmaps` in the `build.yaml` configuration file.
- * The fourth argument is exclusive to `debian` and `ubuntu` `.deb` packages, and is the release version of Debian or Ubuntu to build for. For each platform, the available releases can be found as the keys under `releases` in the `build.yaml` configuration file.
+ * The fourth argument is exclusive to `debian` and `ubuntu` `.deb` packages, and is the release codename of Debian or Ubuntu to build for. For each platform, the available releases can be found as the keys under `releases` in the `build.yaml` configuration file.
**NOTE:** Your running user must have Docker privileges, or you should run `build.py` as root/with `sudo`.
@@ -81,7 +81,7 @@ If you want a non-Docker image output (`.deb`, `tar`/`zip` archive, etc.) follow
Build `.deb` packages for Debian 12 "Bookworm" amd64:
```
-./build.py auto debian amd64 12
+./build.py auto debian amd64 bookworm
```
Build Linux `.tar.xx` archives for arm64-musl:
bgstack15