Skip to content

chore(deps): Updated to Theia 1.39.0 #2144

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 20 commits into from
Aug 14, 2023
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