Skip to content

Commit

Permalink
fix a minor issue that fell out from removing console.log()s
Browse files Browse the repository at this point in the history
  • Loading branch information
pmcelhaney committed Aug 19, 2022
1 parent 59c0a5c commit a07c2b2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/famous-peaches-ring.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"counterfact": patch
---

fix a crash when regenerating code
2 changes: 1 addition & 1 deletion src/typescript-generator/repository.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class Repository {
.then((stat) => stat.isFile())
.catch(() => false))
) {
process.stdout.write("not overwriting", fullPath);
process.stdout.write(`not overwriting${fullPath}\n`);

return;
}
Expand Down

0 comments on commit a07c2b2

Please sign in to comment.