Skip to content

Commit

Permalink
fix(csv-to-json): fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
osoken committed Jan 28, 2023
1 parent 56eb857 commit 5015a23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/postprocess/postprocess_dispatcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class PostprocessDispatcher {
} else if (type === this.csvToJsonConverter.type) {
if (this.csvToJsonConverter.validate(argumentList)) {
await this.csvToJsonConverter.execute([], targetPath);
console.log('Convert csv to json.');
console.log("Convert csv to json.");
} else {
Deno.exit(1);
}
Expand Down

0 comments on commit 5015a23

Please sign in to comment.