Skip to content

Commit

Permalink
Allow after_build_id to be empty
Browse files Browse the repository at this point in the history
Stop quoting after_build_id in order to use it even when it's empty.
Disable shellcheck error reporting on this.
  • Loading branch information
tuliom committed Feb 7, 2025
1 parent 007f154 commit c548592
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/fedora-copr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,10 +194,11 @@ jobs:
if ! is_package_supported_by_chroot "${pkg}" "${chroot}"; then
echo "Package '${pkg}' is not supported by chroot: ${chroot}";
else
# shellcheck disable=SC2086
copr build-package \
--timeout $((30*3600)) \
--nowait \
--name "$pkg" "${after_build_id}" \
--name "$pkg" ${after_build_id} \
--chroot "${chroot}" \
${{ env.project_today }} \
| tee "${pkg}.log"
Expand Down

0 comments on commit c548592

Please sign in to comment.