Skip to content

Commit

Permalink
fix: process SSH git URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
Alchez authored and ankush committed Dec 8, 2021
1 parent e2858cb commit c8494cf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bench/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ def setup_details(self):

# fetch meta for repo from remote git server - traditional get-app url
elif is_git_url(self.name):
if self.name.startswith("git@") or self.name.startswith("ssh://"):
self.use_ssh = True
self._setup_details_from_git_url()

# fetch meta from new styled name tags & first party apps on github
Expand Down

0 comments on commit c8494cf

Please sign in to comment.