(config)
| 534 | } |
| 535 | |
| 536 | function saveStudioConfig(config) { |
| 537 | try { |
| 538 | atomicWriteFileSync(STUDIO_CONFIG_PATH, JSON.stringify(config, null, 2)); |
| 539 | return true; |
| 540 | } catch (err) { |
| 541 | console.error('Failed to save studio config:', err); |
| 542 | return false; |
| 543 | } |
| 544 | } |
| 545 | |
| 546 | const getWslDistributions = () => { |
| 547 | try { |
no test coverage detected