Skip to content

Commit

Permalink
Fix SCL leaking into Copr SRPM build
Browse files Browse the repository at this point in the history
The change to using the srpm_build role caused the scl field to
become False which was interpreted as a string creating incorrect
SRPM names. For example, False-nodejs-sass.
  • Loading branch information
ehelms authored and ekohl committed Jul 31, 2023
1 parent b7d8f1a commit 24a8822
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion obal/data/roles/build_srpm/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
srpm:
package: "{{ inventory_dir }}/{{ package_base_dir }}/{{ inventory_hostname }}"
output: "{{ build_srpm_output_dir }}"
scl: "{{ scl | default(omit) }}"
scl: "{{ build_srpm_scl | default(omit) }}"
source_location: "{{ source_location | default(omit) }}"
source_system: "{{ source_system | default(omit) }}"
register: srpm_build
Expand Down

0 comments on commit 24a8822

Please sign in to comment.