Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .copr/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ srpm:
# similar to https://github.com/actions/checkout/issues/760, but for COPR
git config --global --add safe.directory '*'
curl -LOf https://src.fedoraproject.org/rpms/rust-afterburn/raw/rawhide/f/rust-afterburn.spec
curl -LOf https://src.fedoraproject.org/rpms/rust-afterburn/raw/rawhide/f/90-afterburn-authorized-keys-file.conf

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

This line should not have been removed. It downloads 90-afterburn-authorized-keys-file.conf, which is a source file required by rust-afterburn.spec. The spec file is downloaded from Fedora Rawhide in the preceding line and lists this file as Source1. Removing this curl command will cause the rpmbuild step to fail because the source file will be missing.

version=$$(git describe --always --tags | sed -e 's,-,\.,g' -e 's,^v,,'); \
git archive --format=tar --prefix=afterburn-$$version/ HEAD | gzip > afterburn-$$version.crate; \
sed -ie "s,^Version:.*,Version: $$version," rust-afterburn.spec
Expand Down
Loading