Skip to content

Commit

Permalink
Make dedupe conditional on having a source
Browse files Browse the repository at this point in the history
  • Loading branch information
illicitonion committed Dec 19, 2024
1 parent 482a0cb commit 82bf901
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,8 @@ def main(bcr_dir: str, overlay_tar_path: str, tag: str, release_tar_url_template
write_source_json(out_dir, openssl_info)

previous_tag_dir = guess_previous_tag_dir(openssl_module_dir, tag)
dedupe_content_with_symlinks(previous_tag_dir, out_dir)
if previous_tag_dir:
dedupe_content_with_symlinks(previous_tag_dir, out_dir)

add_to_metadata(openssl_module_dir, tag)

Expand Down

0 comments on commit 82bf901

Please sign in to comment.