From bbafa06a3d3db60bbd06d4d4cd582586f7126d93 Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Sun, 8 Jul 2018 22:30:39 -0700 Subject: [PATCH] Fix settings search id generation --- build/gulpfile.vscode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/gulpfile.vscode.js b/build/gulpfile.vscode.js index c363f4d26cf..4831c70e07b 100644 --- a/build/gulpfile.vscode.js +++ b/build/gulpfile.vscode.js @@ -508,7 +508,7 @@ function getSettingsSearchBuildId(packageJson) { /\/master$/.test(branch) ? 1 : 2; // Some unexpected branch - const out = cp.execSync(`git rev-list master --count`); + const out = cp.execSync(`git rev-list HEAD --count`); const count = parseInt(out.toString()); //