diff --git a/tools/installer/lib/installer.js b/tools/installer/lib/installer.js index 1757f07d..e5a5082b 100644 --- a/tools/installer/lib/installer.js +++ b/tools/installer/lib/installer.js @@ -552,7 +552,8 @@ class Installer { installType: manifest.install_type, agent: manifest.agent, directory: installDir, - ide: newConfig.ide || manifest.ide_setup, // Use new IDE choice if provided + ide: newConfig?.ide || manifest.ide_setup, // Use new IDE choice if provided + ides: newConfig?.ides || manifest.ides_setup || [], }; await this.performFreshInstall(config, installDir, spinner);