diff --git a/tests/test_bare.sh b/tests/test_bare.sh index 75a0f31f..05da9328 100755 --- a/tests/test_bare.sh +++ b/tests/test_bare.sh @@ -11,7 +11,7 @@ mkdir -p .cache/bare cd .cache/bare # create the project using the default settings in cookiecutter.json -cookiecutter ../../ --no-input --overwrite-if-exists use_docker=n $@ +cookiecutter ../../ --no-input --overwrite-if-exists use_docker=n "$@" cd my_awesome_project # Install OS deps @@ -42,4 +42,4 @@ then fi # Generate the HTML for the documentation -cd docs && make html \ No newline at end of file +cd docs && make html diff --git a/tests/test_docker.sh b/tests/test_docker.sh index 45e817df..b3663bd2 100755 --- a/tests/test_docker.sh +++ b/tests/test_docker.sh @@ -11,7 +11,7 @@ mkdir -p .cache/docker cd .cache/docker # create the project using the default settings in cookiecutter.json -cookiecutter ../../ --no-input --overwrite-if-exists use_docker=y $@ +cookiecutter ../../ --no-input --overwrite-if-exists use_docker=y "$@" cd my_awesome_project # Lint by running pre-commit on all files @@ -40,4 +40,4 @@ docker-compose -f local.yml run django python manage.py makemessages --all docker-compose -f local.yml run django python manage.py check --fail-level WARNING # Generate the HTML for the documentation -docker-compose -f local.yml run docs make html \ No newline at end of file +docker-compose -f local.yml run docs make html diff --git a/{{cookiecutter.project_slug}}/.github/dependabot.yml b/{{cookiecutter.project_slug}}/.github/dependabot.yml index cdc36543..cf88cf33 100644 --- a/{{cookiecutter.project_slug}}/.github/dependabot.yml +++ b/{{cookiecutter.project_slug}}/.github/dependabot.yml @@ -13,7 +13,7 @@ updates: {%- if cookiecutter.use_docker == 'y' %} # Enable version updates for Docker - # We need to specify each Dockerfile in a separate entry because Dependabot doesn't + # We need to specify each Dockerfile in a separate entry because Dependabot doesn't # support wildcards or recursively checking subdirectories. Check this issue for updates: # https://github.com/dependabot/dependabot-core/issues/2178 - package-ecosystem: "docker" @@ -38,7 +38,7 @@ updates: # Check for updates to GitHub Actions every weekday schedule: interval: "daily" - + # Enable version updates for Docker - package-ecosystem: "docker" # Look for a `Dockerfile` in the `compose/production/aws` directory diff --git a/{{cookiecutter.project_slug}}/.idea/{{cookiecutter.project_slug}}.iml b/{{cookiecutter.project_slug}}/.idea/{{cookiecutter.project_slug}}.iml index d408765a..289d9716 100644 --- a/{{cookiecutter.project_slug}}/.idea/{{cookiecutter.project_slug}}.iml +++ b/{{cookiecutter.project_slug}}/.idea/{{cookiecutter.project_slug}}.iml @@ -14,11 +14,11 @@ {% if cookiecutter.js_task_runner != 'None' %} - + - {% else %} - + {% else %} + {% endif %} diff --git a/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/base.html b/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/base.html index 9089e3f8..e5087534 100644 --- a/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/base.html +++ b/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/base.html @@ -119,7 +119,7 @@ {% block inline_javascript %} {% comment %} Script tags with only code, no src (defer by default). To run - with a "defer" so that you run run inline code: + with a "defer" so that you run inline code: