From 4c80e6fd34324c2e42005e846e2dab46a93176c7 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sat, 27 Jul 2024 15:38:41 +0200 Subject: [PATCH] Fixed github.com repo URL case. --- .drone/github-mirror.sh | 4 ++-- platypush/builder/_base.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone/github-mirror.sh b/.drone/github-mirror.sh index 6c59b19a05..20832d4b51 100755 --- a/.drone/github-mirror.sh +++ b/.drone/github-mirror.sh @@ -6,9 +6,9 @@ ssh-keyscan github.com >> ~/.ssh/known_hosts 2>/dev/null # Clone the repository -git remote add github git@github.com:/BlackLight/platypush.git +git remote add github git@github.com:/blacklight/platypush.git git pull --rebase github "$(git branch | head -1 | awk '{print $2}')" || echo "No such branch on Github" # Push the changes to the GitHub mirror git push --all -v github -git push --tags +git push --tags -v github diff --git a/platypush/builder/_base.py b/platypush/builder/_base.py index 5bc139f479..17c82ffc64 100644 --- a/platypush/builder/_base.py +++ b/platypush/builder/_base.py @@ -29,7 +29,7 @@ class BaseBuilder(ABC): and :module:`platypush.platydock` modules/scripts. """ - REPO_URL: str = 'https://github.com/BlackLight/platypush.git' + REPO_URL: str = 'https://github.com/blacklight/platypush.git' """ We use the Github URL here rather than the self-hosted Gitea URL to prevent too many requests to the Gitea server.