Skip to content

Commit

Permalink
Merge branch 'fastbuild-concurrency-group' into 'main'
Browse files Browse the repository at this point in the history
Fix invalid fastbuild concurrent group when there is only a single group

See merge request Sharpmake/sharpmake!597
  • Loading branch information
jspelletier committed Jan 27, 2025
2 parents 3614a3c + e124126 commit 2fe6cb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sharpmake.Generators/FastBuild/MasterBff.cs
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ private static void WriteMasterSettingsSection(FileGenerator masterBffGenerator,
masterBffGenerator.Write(Bff.Template.ConfigurationFile.ConcurrencyGroup);
}
}
concurrencyGroupList = UtilityMethods.FBuildFormatList(groupSectionList, 4, UtilityMethods.FBuildFormatListOptions.UseSingleElementShortFormat | UtilityMethods.FBuildFormatListOptions.UseCommaBetweenElements);
concurrencyGroupList = UtilityMethods.FBuildFormatList(groupSectionList, 4, UtilityMethods.FBuildFormatListOptions.UseCommaBetweenElements);
}

using (masterBffGenerator.Declare("CachePath", cachePath))
Expand Down

0 comments on commit 2fe6cb0

Please sign in to comment.