mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
nightly: fix "deploy key URL" that is printed to log output
GitLab now uses the "/-/" form as the canonical.
This commit is contained in:
parent
82f6ebae5d
commit
516624c9ce
1 changed files with 1 additions and 1 deletions
|
|
@ -135,7 +135,7 @@ def main():
|
||||||
clone_url = os.getenv('CI_PROJECT_URL') + NIGHTLY
|
clone_url = os.getenv('CI_PROJECT_URL') + NIGHTLY
|
||||||
repo_base = clone_url + '/raw/master/fdroid'
|
repo_base = clone_url + '/raw/master/fdroid'
|
||||||
servergitmirror = 'git@' + urlparse(clone_url).netloc + ':' + repo_git_base
|
servergitmirror = 'git@' + urlparse(clone_url).netloc + ':' + repo_git_base
|
||||||
deploy_key_url = clone_url + '/settings/repository'
|
deploy_key_url = clone_url + '/-/settings/repository#js-deploy-keys-settings'
|
||||||
git_user_name = os.getenv('GITLAB_USER_NAME')
|
git_user_name = os.getenv('GITLAB_USER_NAME')
|
||||||
git_user_email = os.getenv('GITLAB_USER_EMAIL')
|
git_user_email = os.getenv('GITLAB_USER_EMAIL')
|
||||||
elif 'TRAVIS_REPO_SLUG' in os.environ:
|
elif 'TRAVIS_REPO_SLUG' in os.environ:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue