Skip to content

Commit 8773558

Browse files
committed
Fix line length linting warnings
1 parent f6c279b commit 8773558

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

src/utils/versionBundles.mts

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)