mirror of
https://github.com/frappe/bench.git
synced 2025-01-24 15:38:25 +00:00
Merge pull request #1227 from Alchez/fix-ssh-git-url
fix: process SSH git URLs
This commit is contained in:
commit
cd1e191b5b
@ -84,6 +84,8 @@ class AppMeta:
|
|||||||
|
|
||||||
# fetch meta for repo from remote git server - traditional get-app url
|
# fetch meta for repo from remote git server - traditional get-app url
|
||||||
elif is_git_url(self.name):
|
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()
|
self._setup_details_from_git_url()
|
||||||
|
|
||||||
# fetch meta from new styled name tags & first party apps on github
|
# fetch meta from new styled name tags & first party apps on github
|
||||||
|
Loading…
x
Reference in New Issue
Block a user