Skip to content

Commit

Permalink
fix set-version tool to print correct message
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellam258 committed Feb 21, 2022
1 parent 7bcb3ae commit 831648c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/set-version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,5 @@ for (const path of paths) {
const fileContent = fs.readFileSync(path.path, "utf-8");
const newContent = fileContent.replace(regexp, `version = "${version}"`);
fs.writeFileSync(path.path, newContent, "utf8");
console.log(`Update version ${version}to ${path}`);
console.log(`Update version ${version} to ${path.path}`);
}

0 comments on commit 831648c

Please sign in to comment.