From b6d9e4498f8c66e6189bc449dcdba240c1347325 Mon Sep 17 00:00:00 2001 From: saattrupdan Date: Tue, 16 Jul 2024 15:28:55 +0200 Subject: [PATCH] style: Merge echo statements --- {{cookiecutter.project_name}}/makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/{{cookiecutter.project_name}}/makefile b/{{cookiecutter.project_name}}/makefile index 2a35172..98ec71e 100644 --- a/{{cookiecutter.project_name}}/makefile +++ b/{{cookiecutter.project_name}}/makefile @@ -59,8 +59,7 @@ install: ## Install dependencies @$(MAKE) --quiet freeze {%- endif %} @$(MAKE) --quiet add-repo-to-git - @echo "Installed the '{{ cookiecutter.project_name }}' project!" - @echo "You can now activate your virtual environment with 'source .venv/bin/activate'." + @echo "Installed the '{{ cookiecutter.project_name }}' project! You can now activate your virtual environment with 'source .venv/bin/activate'." {%- if cookiecutter.pre_commit_hooks == 'n' %} @echo "If you want to use pre-commit hooks in the future, run 'make install-pre-commit'." {%- endif %}