Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
ManasJayanth committed May 31, 2024
1 parent fc9cfde commit 09d4f0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -176225,7 +176225,7 @@ function bundleNPMArtifacts() {
console.log(`exec: ${cmd}`);
return external_child_process_.execSync(cmd).toString().trim();
}
const version = exec("git describe --tags");
const version = exec("git describe --tags --always");
const packageJson = JSON.stringify({
name: mainPackageJson.name,
version,
Expand Down
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ async function bundleNPMArtifacts() {
console.log(`exec: ${cmd}`);
return cp.execSync(cmd).toString().trim();
}
const version = exec("git describe --tags");
const version = exec("git describe --tags --always");
const packageJson = JSON.stringify(
{
name: mainPackageJson.name,
Expand Down

0 comments on commit 09d4f0c

Please sign in to comment.