|
@ -16,8 +16,8 @@ function buildVersion(): string { |
|
|
if (!isGitCommand()) { |
|
|
if (!isGitCommand()) { |
|
|
return version |
|
|
return version |
|
|
} |
|
|
} |
|
|
const dirty = execSync("git status -s | wc -l").toString() |
|
|
|
|
|
return `${version}…${dirty}` |
|
|
|
|
|
|
|
|
const dirty = Number(execSync("git status -s | wc -l").toString()) |
|
|
|
|
|
return dirty > 0 ? `${version}…${dirty}` : version |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
function isGitCommand() { |
|
|
function isGitCommand() { |
|
|