From bff858f049260a7db5a6a9768baf3ef2809b8842 Mon Sep 17 00:00:00 2001 From: Abel Soares Siqueira Date: Tue, 31 Oct 2023 18:15:26 +0100 Subject: [PATCH] Use single quotes on file name for Windows sake --- .copier-answers.yml | 2 +- .github/workflows/Test.yml | 2 +- .../{% if License == 'Apache-2.0' %}LICENSE{% endif %}.jinja | 0 .../{% if License == 'GPL-3.0' %}LICENSE{% endif %}.jinja | 0 .../{% if License == 'MIT' %}LICENSE{% endif %}.jinja | 0 .../{% if License == 'MPL-2.0' %}LICENSE{% endif %}.jinja | 0 6 files changed, 2 insertions(+), 2 deletions(-) rename "template/{% if License == \"Apache-2.0\" %}LICENSE{% endif %}.jinja" => template/{% if License == 'Apache-2.0' %}LICENSE{% endif %}.jinja (100%) rename "template/{% if License == \"GPL-3.0\" %}LICENSE{% endif %}.jinja" => template/{% if License == 'GPL-3.0' %}LICENSE{% endif %}.jinja (100%) rename "template/{% if License == \"MIT\" %}LICENSE{% endif %}.jinja" => template/{% if License == 'MIT' %}LICENSE{% endif %}.jinja (100%) rename "template/{% if License == \"MPL-2.0\" %}LICENSE{% endif %}.jinja" => template/{% if License == 'MPL-2.0' %}LICENSE{% endif %}.jinja (100%) diff --git a/.copier-answers.yml b/.copier-answers.yml index eb80bec9..cf30ee68 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -1,6 +1,6 @@ # Changes here will be overwritten by Copier AddMacToCI: true -AddWinToCI: false +AddWinToCI: true AuthorEmail: abel.s.siqueira@gmail.com AuthorName: Abel Soares Siqueira JuliaMinVersion: '1.6' diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index ee61d612..a8d8bc9a 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -38,7 +38,7 @@ jobs: os: - ubuntu-latest - macOS-latest - #- windows-latest + - windows-latest arch: - x64 allow_failure: [false] diff --git "a/template/{% if License == \"Apache-2.0\" %}LICENSE{% endif %}.jinja" b/template/{% if License == 'Apache-2.0' %}LICENSE{% endif %}.jinja similarity index 100% rename from "template/{% if License == \"Apache-2.0\" %}LICENSE{% endif %}.jinja" rename to template/{% if License == 'Apache-2.0' %}LICENSE{% endif %}.jinja diff --git "a/template/{% if License == \"GPL-3.0\" %}LICENSE{% endif %}.jinja" b/template/{% if License == 'GPL-3.0' %}LICENSE{% endif %}.jinja similarity index 100% rename from "template/{% if License == \"GPL-3.0\" %}LICENSE{% endif %}.jinja" rename to template/{% if License == 'GPL-3.0' %}LICENSE{% endif %}.jinja diff --git "a/template/{% if License == \"MIT\" %}LICENSE{% endif %}.jinja" b/template/{% if License == 'MIT' %}LICENSE{% endif %}.jinja similarity index 100% rename from "template/{% if License == \"MIT\" %}LICENSE{% endif %}.jinja" rename to template/{% if License == 'MIT' %}LICENSE{% endif %}.jinja diff --git "a/template/{% if License == \"MPL-2.0\" %}LICENSE{% endif %}.jinja" b/template/{% if License == 'MPL-2.0' %}LICENSE{% endif %}.jinja similarity index 100% rename from "template/{% if License == \"MPL-2.0\" %}LICENSE{% endif %}.jinja" rename to template/{% if License == 'MPL-2.0' %}LICENSE{% endif %}.jinja