Skip to content

Commit

Permalink
git provider: added support for library.sync_uri to have multiple arg…
Browse files Browse the repository at this point in the history
…uments, not just one
  • Loading branch information
Rene Brglez committed Dec 22, 2024
1 parent 6528646 commit b665aef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fusesoc/provider/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def _checkout_library_version(library):
@staticmethod
def init_library(library):
logger.info(f"Cloning library into {library.location}")
git_args = ["clone", library.sync_uri, library.location]
git_args = ["clone", *library.sync_uri.split(), library.location]
try:
Launcher("git", git_args).run()
Git._checkout_library_version(library)
Expand Down

0 comments on commit b665aef

Please sign in to comment.