Skip to content

Commit

Permalink
fix: Remove stray console.log()
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed Nov 12, 2024
1 parent 6e301bf commit b516abf
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 b516abf

Please sign in to comment.