From 381f141b60f679f29174bbaed1a8ae1e18303b11 Mon Sep 17 00:00:00 2001 From: "Nikita P. Shupeyko" Date: Tue, 20 Jun 2017 22:34:46 +0300 Subject: [PATCH] Remove Gulp-Docker integraton not supported initialization message --- hooks/post_gen_project.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/hooks/post_gen_project.py b/hooks/post_gen_project.py index 0bebb4382..c005d9e7e 100644 --- a/hooks/post_gen_project.py +++ b/hooks/post_gen_project.py @@ -263,11 +263,10 @@ if '{{ cookiecutter.use_lets_encrypt }}'.lower() != 'y': # 8. Display a warning if use_docker and use_grunt are selected. Grunt isn't # supported by our docker config atm. -if '{{ cookiecutter.js_task_runner }}'.lower() in ['grunt', 'gulp'] and '{{ cookiecutter.use_docker }}'.lower() == 'y': +if '{{ cookiecutter.js_task_runner }}'.lower() in ['grunt'] and '{{ cookiecutter.use_docker }}'.lower() == 'y': print( - "You selected to use docker and a JS task runner. This is NOT supported out of the box for now. You " - "can continue to use the project like you normally would, but you will need to add a " - "js task runner service to your docker configuration manually." + "You selected to use Docker and Grunt task runner. This is NOT supported out of the box for now. You " + "can continue to use the project like you normally would, but you will need to setup Grunt manually." ) # 9. Removes the certbot/letsencrypt files and display a warning if use_lets_encrypt is selected and use_docker isn't.