Skip to content

Commit fa594fb

Browse files
authored
fix: Fixed a hang on Windows with web-ext --verbose ... (#691)
1 parent 03c87f4 commit fa594fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/program.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export function defaultVersionGetter(
152152
return JSON.parse(packageData).version;
153153
} else {
154154
log.debug('Getting version from the git revision');
155-
return `${git.branch()}-${git.long()}`;
155+
return `${git.branch(absolutePackageDir)}-${git.long(absolutePackageDir)}`;
156156
}
157157
}
158158

0 commit comments

Comments
 (0)