File tree Expand file tree Collapse file tree 1 file changed +15
-5
lines changed Expand file tree Collapse file tree 1 file changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -106,11 +106,21 @@ export default class VersionBundlesLoader {
106106 if ( modifiers !== undefined ) {
107107 const platformDouble = `${ process . platform } _${ process . arch } ` ;
108108 if ( modifiers [ platformDouble ] !== undefined ) {
109- chosenBundle . cmake = modifiers [ platformDouble ] [ "cmake" ] ?? chosenBundle . cmake
110- chosenBundle . ninja = modifiers [ platformDouble ] [ "ninja" ] ?? chosenBundle . ninja
111- chosenBundle . picotool = modifiers [ platformDouble ] [ "picotool" ] ?? chosenBundle . picotool
112- chosenBundle . toolchain = modifiers [ platformDouble ] [ "toolchain" ] ?? chosenBundle . toolchain
113- chosenBundle . riscvToolchain = modifiers [ platformDouble ] [ "riscvToolchain" ] ?? chosenBundle . riscvToolchain
109+ chosenBundle . cmake =
110+ modifiers [ platformDouble ] [ "cmake" ] ?? chosenBundle . cmake
111+
112+ chosenBundle . ninja =
113+ modifiers [ platformDouble ] [ "ninja" ] ?? chosenBundle . ninja
114+
115+ chosenBundle . picotool =
116+ modifiers [ platformDouble ] [ "picotool" ] ?? chosenBundle . picotool
117+
118+ chosenBundle . toolchain =
119+ modifiers [ platformDouble ] [ "toolchain" ] ?? chosenBundle . toolchain
120+
121+ chosenBundle . riscvToolchain =
122+ modifiers [ platformDouble ] [ "riscvToolchain" ] ??
123+ chosenBundle . riscvToolchain
114124 }
115125 }
116126 }
You can’t perform that action at this time.
0 commit comments