Creating empty file

This commit is contained in:
Paul Gauthier 2023-05-14 09:09:37 -07:00
parent 3f26a3ec05
commit 708653290f
2 changed files with 2 additions and 2 deletions

View file

@ -73,7 +73,7 @@ class Coder:
for fname in cmd_line_fnames:
fname = Path(fname)
if not fname.exists():
self.io.tool(f"Creating {fname}")
self.io.tool(f"Creating empty file {fname}")
fname.parent.mkdir(parents=True, exist_ok=True)
fname.touch()

View file

@ -6,7 +6,7 @@ In this chat transcript, the user asks aider to make a simple flask app with var
## Chat transcript
> hello-world-flask$ aider app.py
> Creating app.py
> Creating empty file app.py
> Added app.py to the chat
#### > make a flask app with a /hello endpoint that returns hello world