From cbf30b4e6a77132bb242606e1d3b3367fab4f3ee Mon Sep 17 00:00:00 2001 From: Gavin D'souza Date: Thu, 2 Dec 2021 00:39:52 +0530 Subject: [PATCH 1/2] chore: Remove invalid classifier --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index bb48a876..fade655f 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,6 @@ setup( classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Console", - "Framework :: Frappe Framework", "License :: OSI Approved :: GNU Affero General Public License v3", "Natural Language :: English", "Operating System :: MacOS", From 660287a1a7ac0023acd177ae88aa9d14c88c063f Mon Sep 17 00:00:00 2001 From: Rohan Bansal Date: Tue, 7 Dec 2021 15:16:49 +0530 Subject: [PATCH 2/2] 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 650dd13b..b233516d 100755 --- a/bench/app.py +++ b/bench/app.py @@ -84,6 +84,8 @@ class AppMeta: # 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