From 14a480c3a3b7d5e34a471e03975eb808efbfcd72 Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Wed, 2 Apr 2025 11:44:50 +0300 Subject: [PATCH] doit: Fix typo in Fedora targets Fix a typo when building a Fedora target. Also, add Fedora 42 support. --- dodo.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dodo.py b/dodo.py index ff8877d..872f89d 100644 --- a/dodo.py +++ b/dodo.py @@ -8,7 +8,7 @@ from doit.action import CmdAction ARCH = "arm64" if platform.machine() == "arm64" else "i686" VERSION = open("share/version.txt").read().strip() -FEDORA_VERSIONS = ["40", "41"] +FEDORA_VERSIONS = ["40", "41", "42"] DEBIAN_VERSIONS = ["bullseye", "jammy", "mantic", "noble", "trixie"] ### Global parameters @@ -124,7 +124,7 @@ def build_deb(cwd): def build_rpm(version, cwd, qubes=False): """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