Skip to content

Commit

Permalink
don't print an error when git fails due to being on a tag or commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rpatel3001 committed Dec 15, 2024
1 parent b545364 commit 18fdb0d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions fusesoc/provider/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ def update_library(library):
Launcher("git", git_args).run()
except subprocess.CalledProcessError as e:
raise RuntimeError(str(e))
except RuntimeError as e:
pass

def _checkout(self, local_dir):
version = self.config.get("version", None)
Expand Down

0 comments on commit 18fdb0d

Please sign in to comment.