From a39fffb89941945a1ed16dd5bae850b0f3b9f5aa Mon Sep 17 00:00:00 2001 From: Mohamed Elmoslemany Date: Wed, 20 Sep 2023 10:43:56 +0200 Subject: [PATCH] tag debug message --- webpack.common.js | 1 + 1 file changed, 1 insertion(+) diff --git a/webpack.common.js b/webpack.common.js index a4979b15..6820f58c 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -10,6 +10,7 @@ const getGitInformation = () => { const commit = execSync('git rev-parse --short HEAD').toString().trim() const repo = execSync('git config --get remote.origin.url').toString().trim() const tag = execSync('git describe --tags --always').toString().trim() + console.log("Debug: Tag = ", tag) return { commit, repo, tag } } catch (e) { return { commit: '', repo: '', tag: '' }