Skip to content
Closed
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
2 changes: 1 addition & 1 deletion resources/spec.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ print('\n\n\n') }

%>%install
mkdir -p %{buildroot}/usr/
cp <%= process.platform === 'darwin' ? '-R' : '-r' %> usr/* %{buildroot}/usr/
cp <%= process.platform === 'darwin' ? '-R' : '-r' %> %{_topdir}/BUILD/usr/* %{buildroot}/usr/
Copy link

Copilot AI Feb 1, 2026

Choose a reason for hiding this comment

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

The corresponding test fixture file test/fixtures/custom.spec.ejs at line 23 still uses the old path pattern usr/* instead of %{_topdir}/BUILD/usr/*. For consistency and to ensure tests validate the correct behavior with rpm 4.20+, this should be updated to match the fix in the main spec template.

Copilot uses AI. Check for mistakes.


%files
Expand Down
Loading