From e2010fed219120828acd8cad6a7f264bb6fa1572 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Budai?= Date: Tue, 3 May 2022 16:58:46 +0200 Subject: [PATCH] spec: set the default release to 1 The release number in the RPMland canonically starts at 1, not at 0. I think it technically doesn't cause any harm but let's stick to what all other packages do. --- koji-osbuild.spec | 2 +- test/container/builder/run-kojid.sh | 2 +- test/container/hub/run-hub.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/koji-osbuild.spec b/koji-osbuild.spec index ad4e872..0cf8ca5 100644 --- a/koji-osbuild.spec +++ b/koji-osbuild.spec @@ -6,7 +6,7 @@ Name: koji-osbuild Version: 7 -Release: 0%{?dist} +Release: 1%{?dist} Summary: Koji integration for osbuild composer %forgemeta diff --git a/test/container/builder/run-kojid.sh b/test/container/builder/run-kojid.sh index 9781c6d..346697a 100755 --- a/test/container/builder/run-kojid.sh +++ b/test/container/builder/run-kojid.sh @@ -3,7 +3,7 @@ set -ux if ls /share/rpms/*.rpm 1> /dev/null 2>&1; then echo "Using RPMs" - rpm -i /share/rpms/koji-osbuild-?-0.*.rpm \ + rpm -i /share/rpms/koji-osbuild-?-1.*.rpm \ /share/rpms/koji-osbuild-builder-*.rpm else echo "Using local plugin" diff --git a/test/container/hub/run-hub.sh b/test/container/hub/run-hub.sh index 2e307ec..553b2fe 100755 --- a/test/container/hub/run-hub.sh +++ b/test/container/hub/run-hub.sh @@ -3,7 +3,7 @@ set -eux if ls /share/rpms/*.rpm 1> /dev/null 2>&1; then echo "Using RPMs" - rpm -i /share/rpms/koji-osbuild-?-0.*.rpm \ + rpm -i /share/rpms/koji-osbuild-?-1.*.rpm \ /share/rpms/koji-osbuild-hub-*.rpm else echo "Using local plugin"