We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cd36f1 commit cb9376fCopy full SHA for cb9376f
packages/build/src/local/repository-status.ts
@@ -52,7 +52,7 @@ export function getRepositoryStatus(
52
53
const result: RepositoryStatus = {
54
clean: true,
55
- hasUnpushedTags: (tagStatus.stdout?.trim() ?? '' + tagStatus.stderr?.trim() ?? '') !== 'Everything up-to-date'
+ hasUnpushedTags: `${tagStatus.stdout?.trim() ?? ''}${tagStatus.stderr?.trim() ?? ''}` !== 'Everything up-to-date'
56
};
57
58
const output = gitStatus.stdout
@@ -95,4 +95,3 @@ export function getReleaseVersionFromBranch(branchName: string | undefined): { m
95
patch: numOrUndefiend(versionParts[2]),
96
97
}
98
-
0 commit comments