From c95f1897f4b4a841a5a1bd15f97d07353f227ec8 Mon Sep 17 00:00:00 2001 From: mprahl Date: Thu, 17 Jan 2019 08:55:58 -0500 Subject: [PATCH] Fix the default distgits config value to match the default value for RPMS_DEFAULT_REPOSITORY This was missed as part of PR#1120, where the default dist-git URLs were changed. --- module_build_service/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module_build_service/config.py b/module_build_service/config.py index a7ef3174..901bdad4 100644 --- a/module_build_service/config.py +++ b/module_build_service/config.py @@ -315,8 +315,8 @@ class Config(object): 'distgits': { 'type': dict, 'default': { - 'git://pkgs.fedoraproject.org': ('fedpkg clone --anonymous {}', - 'fedpkg --release module sources'), + 'https://src.fedoraproject.org': ('fedpkg clone --anonymous {}', + 'fedpkg --release module sources'), }, 'desc': 'Mapping between dist-git and command to '}, 'mock_config': {