Skip to content

Commit 297cf01

Browse files
JonZeollaclaude
andcommitted
debug: add logging to Windows template dir rename
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent d2d3bd3 commit 297cf01

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,12 +145,20 @@ jobs:
145145
# {{cookiecutter.project_name}} renders identically to the original
146146
# with replace(" ", "") since the default has no spaces.
147147
cd "$repoDir"
148+
echo "=== Template dir contents ==="
149+
ls -la
150+
echo "=== Looking for cookiecutter template dir ==="
148151
for d in *; do
152+
echo " checking: $d"
149153
if [[ "$d" == *'cookiecutter.'* ]]; then
154+
echo " FOUND template dir: $d"
150155
mv "$d" '{{cookiecutter.project_name}}'
156+
echo " renamed to: {{cookiecutter.project_name}}"
151157
break
152158
fi
153159
done
160+
echo "=== After rename ==="
161+
ls -la
154162
cd -
155163
156164
uvx --with gitpython cookiecutter "$repoDir" --no-input --output-dir "$RUNNER_TEMP"

0 commit comments

Comments
 (0)