From c8494cffa6643f0ad2d586bde905b944df5d3f8d Mon Sep 17 00:00:00 2001 From: Rohan Bansal Date: Tue, 7 Dec 2021 15:16:49 +0530 Subject: [PATCH] fix: process SSH git URLs --- bench/app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bench/app.py b/bench/app.py index 650dd13ba..b233516d8 100755 --- a/bench/app.py +++ b/bench/app.py @@ -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