Skip to content

Commit

Permalink
consider git+https:// before git+ssh:// URLs for dependencies (fixes #…
Browse files Browse the repository at this point in the history
  • Loading branch information
boegel committed Mar 25, 2020
1 parent b0dd118 commit 4e67cdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/vsc/install/shared_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def _log(self, level, msg, args):

RELOAD_VSC_MODS = False

VERSION = '0.15.0'
VERSION = '0.15.1'

log.info('This is (based on) vsc.install.shared_setup %s' % VERSION)
log.info('(using setuptools version %s located at %s)' % (setuptools.__version__, setuptools.__file__))
Expand Down Expand Up @@ -1422,9 +1422,9 @@ def parse_target(self, target, urltemplate=None):

if self.private_repo:
urls = [
('github.com', 'git+https://'),
('github.ugent.be', 'git+ssh://git@'),
('github.com', 'git+ssh://git@'),
('github.com', 'git+https://'),
]
else:
urls = [('github.com', 'git+https://')]
Expand Down

0 comments on commit 4e67cdc

Please sign in to comment.