diff --git a/src/version.ts b/src/version.ts index 7c65b06e..ff11a197 100644 --- a/src/version.ts +++ b/src/version.ts @@ -38,7 +38,6 @@ async function getLocalVersion(path: string): Promise { 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) {