From bc4c9bcac40d24a05efd6b35081705bae90f2b81 Mon Sep 17 00:00:00 2001 From: Pavel Rybalko Date: Mon, 13 Dec 2021 15:12:43 +0700 Subject: [PATCH] always show git hash in bs version (#81) --- vue.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vue.config.js b/vue.config.js index cfdf534..c12481c 100644 --- a/vue.config.js +++ b/vue.config.js @@ -4,7 +4,7 @@ let Webpack = require("webpack"); // eslint-disable-next-line security/detect-child-process let childProcess = require("child_process"); -let GIT_REVISION = childProcess.execSync("git describe").toString(); +let GIT_REVISION = childProcess.execSync("git describe --long").toString(); module.exports = { productionSourceMap: false,