Skip to content

Commit 9dc8d25

Browse files
Add global.json
1 parent ef28fe3 commit 9dc8d25

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: make-util.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1774,7 +1774,8 @@ var ensureBuildConfigGeneratorPrereqs = function (baseConfigToolPath) {
17741774
}
17751775

17761776
// build configToolBuildUtility if needed. (up-to-date check will skip build if not needed)
1777-
run(configToolBuildUtility, true);
1777+
// run(configToolBuildUtility, true);
1778+
return configToolBuildUtility;
17781779
};
17791780
exports.ensureBuildConfigGeneratorPrereqs = ensureBuildConfigGeneratorPrereqs;
17801781

@@ -1793,8 +1794,7 @@ var processGeneratedTasks = function(baseConfigToolPath, taskList, makeOptions,
17931794
if (sprintNumber && !Number.isInteger(sprintNumber)) fail("Sprint is not a number");
17941795

17951796
var tasks = taskList.join('|')
1796-
ensureBuildConfigGeneratorPrereqs(baseConfigToolPath);
1797-
var programPath = `dotnet run --project "${baseConfigToolPath}/BuildConfigGen.csproj" -- `
1797+
var programPath = `${ensureBuildConfigGeneratorPrereqs(baseConfigToolPath)} && dotnet run --project "${baseConfigToolPath}/BuildConfigGen.csproj" -- `
17981798

17991799
const args = [
18001800
"--task",

0 commit comments

Comments
 (0)