From 80a8cdcba22f1a567efad19a487cb8ce28353dab Mon Sep 17 00:00:00 2001 From: Levente Polyak Date: Sat, 20 May 2023 12:10:06 +0200 Subject: chore(git): use default ssh port 22 url scheme We only need to specifically use ssh:// protocol prefix if we want to specify a special port. As we moved to support pulling directly over port 22 from out GitLab instance we can change the url scheme to the simple variant. Signed-off-by: Levente Polyak --- src/lib/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/lib/common.sh b/src/lib/common.sh index 51ab2fd..24479eb 100644 --- a/src/lib/common.sh +++ b/src/lib/common.sh @@ -25,7 +25,7 @@ export GITLAB_HOST=gitlab.archlinux.org export GIT_REPO_SPEC_VERSION=1 export GIT_PACKAGING_NAMESPACE=archlinux/packaging/packages export GIT_PACKAGING_NAMESPACE_ID=11323 -export GIT_PACKAGING_URL_SSH="ssh://git@${GITLAB_HOST}/${GIT_PACKAGING_NAMESPACE}" +export GIT_PACKAGING_URL_SSH="git@${GITLAB_HOST}:${GIT_PACKAGING_NAMESPACE}" export GIT_PACKAGING_URL_HTTPS="https://${GITLAB_HOST}/${GIT_PACKAGING_NAMESPACE}" export PACKAGING_REPO_RELEASE_HOST=repos.archlinux.org -- cgit v1.2.3-54-g00ecf