From ebb711718ab543f301e51fb9b5f7306a1db1be19 Mon Sep 17 00:00:00 2001 From: Nicolas MASSE Date: Thu, 30 Oct 2025 13:49:21 +0100 Subject: [PATCH] minor changes --- .copr/Makefile | 1 - build.sh | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.copr/Makefile b/.copr/Makefile index 8be908c..2a42926 100644 --- a/.copr/Makefile +++ b/.copr/Makefile @@ -4,5 +4,4 @@ srpm: git lfs install git lfs pull git lfs ls-files - git lfs status /bin/bash -xEeuo pipefail -c 'rootdir="$$(dirname $(spec))/../"; ln -s $(outdir) $$rootdir/SRPMS; rpmbuild --define "_topdir $$rootdir" -bs $(spec)' diff --git a/build.sh b/build.sh index 0b29adb..45327ac 100755 --- a/build.sh +++ b/build.sh @@ -11,7 +11,7 @@ for dist in centos-* fedora-*; do echo "Building packages for $dist using $chroot..." for spec in $dist/SPECS/*.spec; do spec="${spec#$dist/}" - copr-cli buildscm --clone-url "$GIT_REPOSITORY" --method make_srpm --subdir "$dist" --spec "$spec" --chroot "$chroot" --nowait "$COPR_PROJECT" + copr-cli buildscm --clone-url "$GIT_REPOSITORY" --method make_srpm --subdir "$dist" --spec "$spec" --chroot "$chroot" --background --nowait "$COPR_PROJECT" done done