Skip to content

Commit

Permalink
chore: Fix jinja in make install
Browse files Browse the repository at this point in the history
  • Loading branch information
saattrupdan committed Jul 15, 2024
1 parent 0fe351d commit c13b55c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions {{cookiecutter.project_name}}/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,21 +44,21 @@ install: ## Install dependencies
@echo "Installing the '{{ cookiecutter.project_name }}' project..."
@$(MAKE) --quiet install-brew
{% if cookiecutter.open_source != 'y' -%}
@$(MAKE) --quiet install-gpg
{%- endif %}
@$(MAKE) --quiet install-gpg
{% endif -%}
@$(MAKE) --quiet generate-gpg-key
{% if cookiecutter.dependency_manager != 'pip' -%}
@$(MAKE) --quiet install-pipx
@$(MAKE) --quiet install-poetry
{%- endif %}
@$(MAKE) --quiet install-pipx
@$(MAKE) --quiet install-poetry
{% endif -%}
@$(MAKE) --quiet install-dependencies
@$(MAKE) --quiet setup-environment-variables
{% if cookiecutter.open_source == 'y' -%}
@$(MAKE) --quiet setup-git
{%- endif %}
@$(MAKE) --quiet setup-git
{% endif -%}
{% if cookiecutter.dependency_manager == 'pip' -%}
@(MAKE) --quiet freeze
{%- endif %}
@(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'."
Expand Down

0 comments on commit c13b55c

Please sign in to comment.