Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modules: Have component_files_identical check for new optional files in modules #2816

Open
wants to merge 14 commits into
base: dev
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update nf_core/synced_repo.py
Co-authored-by: Matthias Hörtenhuber <[email protected]>
  • Loading branch information
asp8200 and mashehu authored Mar 1, 2024
commit a9cd3256ff1e7ff71896c7ac6ac504be6a1b8e62
1 change: 0 additions & 1 deletion nf_core/synced_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,6 @@ def component_files_identical(self, component_name, base_path, commit, component
files_identical[file] = filecmp.cmp(component_file, base_file)
except FileNotFoundError:
errmsg = f"Could not open file: {os.path.join(component_dir, file)}"
log.error(errmsg)
raise UserWarning(errmsg)
self.checkout_branch()
return files_identical
Expand Down
Loading