Skip to content

Commit

Permalink
Remove superfluous unit-threaded selection for buildgen
Browse files Browse the repository at this point in the history
  • Loading branch information
kinke committed Jan 30, 2024
1 parent 681f0c9 commit 2270234
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/reggae/reggae.d
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,7 @@ private enum reggaeFileDubSelectionsJson =
"fileVersion": 1,
"versions": {
"dub": %s,
"reggae": {"path":"packages/reggae"},
"unit-threaded": %s
"reggae": {"path":"packages/reggae"}
}
}
`;
Expand Down Expand Up @@ -322,7 +321,7 @@ private Binary buildReggaefileDub(O)(auto ref O output, in Options options) {
writeIfDiffers(
output,
buildPath(dubRecipeDir, "dub.selections.json"),
reggaeFileDubSelectionsJson.format(selectionsPkgVersion!"dub", selectionsPkgVersion!"unit-threaded"),
reggaeFileDubSelectionsJson.format(selectionsPkgVersion!"dub"),
);

const reggaeRecipePath = buildPath(reggaeSrcDirName(options), "..", "dub.sdl");
Expand Down

0 comments on commit 2270234

Please sign in to comment.