Skip to content

Commit 47bd10e

Browse files
author
Luca Forstner
authored
ref: Use full git SHA for release name (#330)
1 parent 0760aa2 commit 47bd10e

File tree

1 file changed

+1
-1
lines changed
  • packages/bundler-plugin-core/src

1 file changed

+1
-1
lines changed

packages/bundler-plugin-core/src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export function stringToUUID(str: string): string {
200200
export function determineReleaseName(): string | undefined {
201201
let gitRevision: string | undefined;
202202
try {
203-
gitRevision = childProcess.execSync("git rev-parse --short HEAD").toString().trim();
203+
gitRevision = childProcess.execSync("git rev-parse HEAD").toString().trim();
204204
} catch (e) {
205205
// noop
206206
}

0 commit comments

Comments
 (0)