Skip to content

Commit

Permalink
Fix extra buffer output.
Browse files Browse the repository at this point in the history
  • Loading branch information
lgarron committed Nov 8, 2024
1 parent cbf0113 commit 029aa30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/git/tagpush.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ complete -c tagpush -l completions -d 'Print completions.' -r -f -a "fish"`);
if (retag) {
stdout.write("Tag was previously at at commit: ");
try {
console.log(await $`git rev-parse ${version}`);
console.log(await $`git rev-parse ${version}`.text());
console.log(SEPARATOR);
await $`rmtag ${version}`;
console.log(SEPARATOR);
Expand Down

0 comments on commit 029aa30

Please sign in to comment.