Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
20 lines
708 B
Diff
20 lines
708 B
Diff
diff --git a/src/main/settings.ts b/src/main/settings.ts
|
|
index 6fad97f..dfc64e3 100644
|
|
--- a/src/main/settings.ts
|
|
+++ b/src/main/settings.ts
|
|
@@ -26,8 +26,12 @@ function loadSettings<T extends object = any>(file: string, name: string) {
|
|
|
|
const store = new SettingsStore(settings);
|
|
store.addGlobalChangeListener(o => {
|
|
- mkdirSync(dirname(file), { recursive: true });
|
|
- writeFileSync(file, JSON.stringify(o, null, 4));
|
|
+ try {
|
|
+ mkdirSync(dirname(file), { recursive: true });
|
|
+ writeFileSync(file, JSON.stringify(o, null, 4));
|
|
+ } catch (e) {
|
|
+ console.error("Nix: Failed to write settings.", e);
|
|
+ }
|
|
});
|
|
|
|
return store;
|