Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: do not generate invalid nightly update site
  • Loading branch information
Akos Kitta committed Jul 31, 2023
commit 28bc470f6b13b87f1c60606c06b7d65a3c82bd5f
10 changes: 6 additions & 4 deletions electron-app/scripts/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,12 @@ async function run() {
];
const updateChannel = getChannel();
if (updateChannel) {
args.push(
'-c.extraMetadata.theia.frontend.config.arduino.ide.updateChannel',
updateChannel
);
// 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',
// updateChannel
// );
}
const cp = exec('electron-builder', args, { stdio: 'inherit' });
await cp;
Expand Down