Skip to content

Commit

Permalink
Merge pull request #165 from pmcelhaney/fix-log-error
Browse files Browse the repository at this point in the history
fix a minor issue that fell out from removing console.log()s
  • Loading branch information
pmcelhaney committed Aug 19, 2022
2 parents 59c0a5c + a07c2b2 commit 009fc40
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 009fc40

Please sign in to comment.