Skip to content

Commit

Permalink
refact: Check sha before resetting current_repo
Browse files Browse the repository at this point in the history
  • Loading branch information
jvfe committed Oct 28, 2024
1 parent a9b9184 commit 046881a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nf_core/components/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,14 @@ def update(self, component=None, silent=False, updated=None, check_diff_exist=Tr
self.modules_repo = ModulesRepo(remote_url, branch)
component = component["name"]

if self.current_remote is None:
self.current_remote = self.modules_repo.remote_url

if self.current_remote == self.modules_repo.remote_url and self.sha is not None:
self.current_sha = self.sha
else:
self.current_sha = None

if self.current_remote is None:
self.current_remote = self.modules_repo.remote_url

self.component = component
if updated is None:
updated = []
Expand Down

0 comments on commit 046881a

Please sign in to comment.