Skip to content

Commit bbafa06

Browse files
committed
Fix settings search id generation
1 parent 0ce2da8 commit bbafa06

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build/gulpfile.vscode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ function getSettingsSearchBuildId(packageJson) {
508508
/\/master$/.test(branch) ? 1 :
509509
2; // Some unexpected branch
510510

511-
const out = cp.execSync(`git rev-list master --count`);
511+
const out = cp.execSync(`git rev-list HEAD --count`);
512512
const count = parseInt(out.toString());
513513

514514
// <version number><commit count><branchId (avoid unlikely conflicts)>

0 commit comments

Comments
 (0)