diff options
author | Levente Polyak <anthraxx@archlinux.org> | 2023-05-20 12:10:06 +0200 |
---|---|---|
committer | Levente Polyak <anthraxx@archlinux.org> | 2023-05-20 12:20:36 +0200 |
commit | 80a8cdcba22f1a567efad19a487cb8ce28353dab (patch) | |
tree | 66facf64b990463985825ffcb7fb8743686ea1fd | |
parent | 41d4624879d01b1269d6af9c1440592a15ad7784 (diff) | |
download | devtools-80a8cdcba22f1a567efad19a487cb8ce28353dab.tar.xz |
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 <anthraxx@archlinux.org>
-rw-r--r-- | src/lib/common.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |