mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 09:52:37 +02:00
doit: Fix typo in Fedora targets
Fix a typo when building a Fedora target. Also, add Fedora 42 support.
This commit is contained in:
parent
9df825db5c
commit
14a480c3a3
1 changed files with 2 additions and 2 deletions
4
dodo.py
4
dodo.py
|
@ -8,7 +8,7 @@ from doit.action import CmdAction
|
||||||
|
|
||||||
ARCH = "arm64" if platform.machine() == "arm64" else "i686"
|
ARCH = "arm64" if platform.machine() == "arm64" else "i686"
|
||||||
VERSION = open("share/version.txt").read().strip()
|
VERSION = open("share/version.txt").read().strip()
|
||||||
FEDORA_VERSIONS = ["40", "41"]
|
FEDORA_VERSIONS = ["40", "41", "42"]
|
||||||
DEBIAN_VERSIONS = ["bullseye", "jammy", "mantic", "noble", "trixie"]
|
DEBIAN_VERSIONS = ["bullseye", "jammy", "mantic", "noble", "trixie"]
|
||||||
|
|
||||||
### Global parameters
|
### Global parameters
|
||||||
|
@ -124,7 +124,7 @@ def build_deb(cwd):
|
||||||
|
|
||||||
def build_rpm(version, cwd, qubes=False):
|
def build_rpm(version, cwd, qubes=False):
|
||||||
"""Build an .rpm package on the requested Fedora distro."""
|
"""Build an .rpm package on the requested Fedora distro."""
|
||||||
return build_linux_pkg(distro="Fedora", version=version, cwd=cwd, qubes=qubes)
|
return build_linux_pkg(distro="fedora", version=version, cwd=cwd, qubes=qubes)
|
||||||
|
|
||||||
|
|
||||||
### Tasks
|
### Tasks
|
||||||
|
|
Loading…
Reference in a new issue