Skip to content

Commit fb3ef85

Browse files
style(desktop): format sqlite binding installer
1 parent 10ce3bb commit fb3ef85

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

apps/desktop/scripts/install-sqlite-bindings.cjs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -172,10 +172,7 @@ function main() {
172172
hasNodeBinary: fs.existsSync(nodeBinary),
173173
electronArches,
174174
hasElectronBinaries: Object.fromEntries(
175-
electronArches.map((targetArch) => [
176-
targetArch,
177-
fs.existsSync(electronBinaries[targetArch]),
178-
]),
175+
electronArches.map((targetArch) => [targetArch, fs.existsSync(electronBinaries[targetArch])]),
179176
),
180177
};
181178

@@ -192,7 +189,8 @@ function main() {
192189
(!targetLock.hasNodeBinary || fs.existsSync(nodeBinary)) &&
193190
electronArches.every(
194191
(targetArch) =>
195-
targetLock.hasElectronBinaries[targetArch] !== true || fs.existsSync(electronBinaries[targetArch]),
192+
targetLock.hasElectronBinaries[targetArch] !== true ||
193+
fs.existsSync(electronBinaries[targetArch]),
196194
);
197195

198196
if (upToDate) {

0 commit comments

Comments
 (0)