Skip to content

Commit 28bc470

Browse files
author
Akos Kitta
committed
fix: do not generate invalid nightly update site
1 parent f7d56e5 commit 28bc470

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Diff for: electron-app/scripts/package.js

+6-4
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,12 @@ async function run() {
2727
];
2828
const updateChannel = getChannel();
2929
if (updateChannel) {
30-
args.push(
31-
'-c.extraMetadata.theia.frontend.config.arduino.ide.updateChannel',
32-
updateChannel
33-
);
30+
// TODO: fix the default nightly update channel preference value if required.
31+
// It's disabled for now: https://github.com/arduino/arduino-ide/issues/2157.
32+
// args.push(
33+
// '-c.extraMetadata.theia.frontend.config.arduino.ide.updateChannel',
34+
// updateChannel
35+
// );
3436
}
3537
const cp = exec('electron-builder', args, { stdio: 'inherit' });
3638
await cp;

0 commit comments

Comments
 (0)