Skip to content

Commit

Permalink
fix: Fixed a hang on Windows with web-ext --verbose ... (#691)
Browse files Browse the repository at this point in the history
  • Loading branch information
kumar303 committed Dec 20, 2016
1 parent 03c87f4 commit fa594fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/program.js
Expand Up @@ -152,7 +152,7 @@ export function defaultVersionGetter(
return JSON.parse(packageData).version;
} else {
log.debug('Getting version from the git revision');
return `${git.branch()}-${git.long()}`;
return `${git.branch(absolutePackageDir)}-${git.long(absolutePackageDir)}`;
}
}

Expand Down

0 comments on commit fa594fb

Please sign in to comment.