Skip to content

Commit

Permalink
Merge pull request #707 from camptocamp/fix
Browse files Browse the repository at this point in the history
Versison: Add missing await
  • Loading branch information
sbrunner authored Feb 19, 2025
2 parents dee3fe7 + 2ca540b commit 93f2db6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion github_app_geo_project/module/versions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ async def process(
with tempfile.TemporaryDirectory() as tmpdirname:
if os.environ.get("TEST") != "TRUE":
os.chdir(tmpdirname)
success = module_utils.git_clone(context.github_project, branch)
success = await module_utils.git_clone(context.github_project, branch)
if not success:
raise VersionException("Failed to clone the repository")

Expand Down

0 comments on commit 93f2db6

Please sign in to comment.