From 206fcc6d6dd34e87ec3ed2c0faeff3784a98a4e9 Mon Sep 17 00:00:00 2001 From: "Fabio C. Barrioneuvo da Luz" Date: Sat, 25 Jun 2016 11:11:04 -0300 Subject: [PATCH] use https instead ssh to clone cookiecutter-webpack - fix issue #647 --- CHANGELOG.md | 4 ++++ hooks/post_gen_project.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 196fbbf3..b077becf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All enhancements and patches to Cookiecutter Django will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +##[2016-06-25] +## Changed +- use `https` instead `ssh` to clone [cookiecutter-webpack](https://github.com/hzdg/cookiecutter-webpack) if `Webpack` is selected as `JS Task Runner` - fix issue #647 (@luzfcb and @resakse) + ##[2016-06-24] ## Added - Settings file for running tests faster (@audreyr) diff --git a/hooks/post_gen_project.py b/hooks/post_gen_project.py index a1050264..8a89c1d6 100644 --- a/hooks/post_gen_project.py +++ b/hooks/post_gen_project.py @@ -168,7 +168,7 @@ def add_webpack(): Adds webpack configuration using cookiecutter to install hzdg/cookiecutter-webpack """ cookiecutter( - 'git@github.com:hzdg/cookiecutter-webpack.git', + 'https://github.com/hzdg/cookiecutter-webpack.git', replay=False, overwrite_if_exists=True, output_dir='../', checkout='pydanny-django', no_input=True, extra_context={ 'project_name': '{{ cookiecutter.project_name }}',