We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0760aa2 commit 47bd10eCopy full SHA for 47bd10e
packages/bundler-plugin-core/src/utils.ts
@@ -200,7 +200,7 @@ export function stringToUUID(str: string): string {
200
export function determineReleaseName(): string | undefined {
201
let gitRevision: string | undefined;
202
try {
203
- gitRevision = childProcess.execSync("git rev-parse --short HEAD").toString().trim();
+ gitRevision = childProcess.execSync("git rev-parse HEAD").toString().trim();
204
} catch (e) {
205
// noop
206
}
0 commit comments