Skip to content

Commit

Permalink
Fix Focal kernel metapackage
Browse files Browse the repository at this point in the history
Discovered by @emkll in [0]. The forked package build logic was
including an empty dir based on the distro string. Update the path
munging logic to use the proper var to avoid.

[0] #5772 (comment)
  • Loading branch information
Conor Schaefer committed Feb 8, 2021
1 parent 69003ee commit e465cf2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

- name: Create any necessary parent directories for jinja files
file:
path: "{{ build_path }}/{{ item.path | dirname |regex_replace('^\\/.*'+package_name, '') }}"
path: "{{ build_path }}/{{ item.path | dirname |regex_replace('^\\/.*'+package_dirname, '') }}"
state: directory
with_items: "{{ jinja_files_found.files }}"

Expand Down

0 comments on commit e465cf2

Please sign in to comment.