Skip to content

Commit

Permalink
Merge pull request #24 from dz0ny/patch-1
Browse files Browse the repository at this point in the history
Use secure transfer when downloading source or binary
  • Loading branch information
gawel committed Jul 24, 2015
2 parents ed7125d + 079c7bb commit 346273d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gp/recipe/node/__init__.py
Expand Up @@ -11,8 +11,8 @@
class Recipe(object):
"""zc.buildout recipe"""

binary_format = 'http://nodejs.org/dist/v{v}/node-v{v}-{p}-{a}.tar.gz'
source_format = 'http://nodejs.org/dist/v{v}/node-v{v}.tar.gz'
binary_format = 'https://nodejs.org/dist/v{v}/node-v{v}-{p}-{a}.tar.gz'
source_format = 'https://nodejs.org/dist/v{v}/node-v{v}.tar.gz'

def __init__(self, buildout, name, options):
self.buildout, self.name, self.options = buildout, name, options
Expand Down

0 comments on commit 346273d

Please sign in to comment.