commit ec059d42d77a5f092135635f478790e77a2685df parent 97a1e09f6ea2a9aa68812c0f20ee6b18a8d4eca8 Author: Sebastian <sebasjm@gmail.com> Date: Mon, 24 Jan 2022 10:58:41 -0300 replace abbrev-ref with short since abbrev will try to use branch name Diffstat:
| M | packages/taler-wallet-cli/rollup.config.js | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/taler-wallet-cli/rollup.config.js b/packages/taler-wallet-cli/rollup.config.js @@ -50,7 +50,7 @@ export default { }; function getGitRevision() { - return child_process.execSync(`git rev-parse --abbrev-ref HEAD`, { + return child_process.execSync(`git rev-parse --short HEAD`, { encoding: 'utf-8', windowsHide: true, }).trim();