Skip to content

Commit

Permalink
Warn instead of fail if module is different from remote
Browse files Browse the repository at this point in the history
  • Loading branch information
drpatelh committed Dec 14, 2021
1 parent 5f8fad6 commit a5dc3c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nf_core/modules/lint/module_changes.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def module_changes(module_lint_object, module):
remote_copy = r.content.decode("utf-8")

if local_copy != remote_copy:
module.failed.append(
module.warned.append(
(
"check_local_copy",
"Local copy of module does not match remote",
Expand Down

0 comments on commit a5dc3c8

Please sign in to comment.