We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue on Windows
copier copy --trust "gh:pawamoy/copier-pdm" /path/to/your/new/project
results in invalid path 'project/docs/{% if author_username == "pawamoy" %}.overrides{% endif %}/main.html.jinja' .
invalid path 'project/docs/{% if author_username == "pawamoy" %}.overrides{% endif %}/main.html.jinja'
Solved by Changing "pawamoy" to 'pawamoy' in {% if author_username == "pawamoy" %}.overrides{% endif %}
"pawamoy"
'pawamoy'
{% if author_username == "pawamoy" %}.overrides{% endif %}
as documented here: "On Windows, double-quotes are not valid characters in file and directory paths." Copier-docs
Thanks a lot for the great template 🙂
The text was updated successfully, but these errors were encountered:
Damn Windows! Yep, I'll fix it, thanks for the report 🙂
Sorry, something went wrong.
fix: Don't use double-quotes in filenames
6c4749e
Issue #32: #32
v0.16.10 🙂
pawamoy
No branches or pull requests
Issue on Windows
copier copy --trust "gh:pawamoy/copier-pdm" /path/to/your/new/project
results in
invalid path 'project/docs/{% if author_username == "pawamoy" %}.overrides{% endif %}/main.html.jinja'
.Solved by
Changing
"pawamoy"
to'pawamoy'
in{% if author_username == "pawamoy" %}.overrides{% endif %}
as documented here: "On Windows, double-quotes are not valid characters in file and directory paths." Copier-docs
Thanks a lot for the great template 🙂
The text was updated successfully, but these errors were encountered: