We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7d56e5 commit 28bc470Copy full SHA for 28bc470
electron-app/scripts/package.js
@@ -27,10 +27,12 @@ async function run() {
27
];
28
const updateChannel = getChannel();
29
if (updateChannel) {
30
- args.push(
31
- '-c.extraMetadata.theia.frontend.config.arduino.ide.updateChannel',
32
- updateChannel
33
- );
+ // TODO: fix the default nightly update channel preference value if required.
+ // It's disabled for now: https://github.com/arduino/arduino-ide/issues/2157.
+ // args.push(
+ // '-c.extraMetadata.theia.frontend.config.arduino.ide.updateChannel',
34
+ // updateChannel
35
+ // );
36
}
37
const cp = exec('electron-builder', args, { stdio: 'inherit' });
38
await cp;
0 commit comments