We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2d3bd3 commit 297cf01Copy full SHA for 297cf01
1 file changed
.github/workflows/ci.yml
@@ -145,12 +145,20 @@ jobs:
145
# {{cookiecutter.project_name}} renders identically to the original
146
# with replace(" ", "") since the default has no spaces.
147
cd "$repoDir"
148
+ echo "=== Template dir contents ==="
149
+ ls -la
150
+ echo "=== Looking for cookiecutter template dir ==="
151
for d in *; do
152
+ echo " checking: $d"
153
if [[ "$d" == *'cookiecutter.'* ]]; then
154
+ echo " FOUND template dir: $d"
155
mv "$d" '{{cookiecutter.project_name}}'
156
+ echo " renamed to: {{cookiecutter.project_name}}"
157
break
158
fi
159
done
160
+ echo "=== After rename ==="
161
162
cd -
163
164
uvx --with gitpython cookiecutter "$repoDir" --no-input --output-dir "$RUNNER_TEMP"
0 commit comments