From 271d20cfd8508c486272993d78f02506c08cc956 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Wed, 5 Aug 2015 16:11:15 +0200 Subject: [PATCH] Add the trailing slash to fix the links in the new version of pagure --- roles/pagure/frontend/templates/pagure.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/pagure/frontend/templates/pagure.cfg b/roles/pagure/frontend/templates/pagure.cfg index 0b1f4747cb..c0c7101675 100644 --- a/roles/pagure/frontend/templates/pagure.cfg +++ b/roles/pagure/frontend/templates/pagure.cfg @@ -45,8 +45,8 @@ DOC_APP_URL = 'https://docs.pagure.org' ### The URL to use to clone git repositories. {% if env == 'pagure-staging' %} -GIT_URL_SSH = 'git@stg.pagure.io' -GIT_URL_GIT = 'https://stg.pagure.io' +GIT_URL_SSH = 'ssh://git@stg.pagure.io/' +GIT_URL_GIT = 'https://stg.pagure.io/' {% else %} GIT_URL_SSH = 'git@pagure.io' GIT_URL_GIT = 'https://pagure.io'