Skip to content

Commit

Permalink
Merge pull request #103 from effigies/fix/console-log
Browse files Browse the repository at this point in the history
fix: Remove stray console.log()
  • Loading branch information
effigies authored Nov 12, 2024
2 parents 6e301bf + b516abf commit d491d1b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ async function getLocalVersion(path: string): Promise<string> {
args: ['-C', path, '-c', 'safe.directory=*', 'describe', '--tags', '--always'],
})
const { success, stdout } = await command.output();
console.log(success)
const description = new TextDecoder().decode(stdout).trim()
return description
} catch(err) {
Expand Down

0 comments on commit d491d1b

Please sign in to comment.