Skip to content

Commit

Permalink
Allow downloads over https
Browse files Browse the repository at this point in the history
  • Loading branch information
pgier committed Feb 12, 2013
1 parent e8ef15f commit b23feb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maven_repo_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def retrieveArtifacts(remoteRepoUrl, localRepoDir, artifactList):
parsedUrl = urlparse.urlparse(remoteRepoUrl)
protocol = parsedUrl[0]
repoPath = parsedUrl[2]
if protocol == 'http':
if protocol == 'http' or protocol == 'https':
for artifact in artifactList:
downloadArtifact(remoteRepoUrl, localRepoDir, artifact)
elif protocol == 'file':
Expand Down

0 comments on commit b23feb9

Please sign in to comment.