diff --git a/scripts/update-version.js b/scripts/update-version.js index 2cf9b74bf..f504e5258 100644 --- a/scripts/update-version.js +++ b/scripts/update-version.js @@ -35,7 +35,7 @@ for (const toUpdate of [ pkg.version = targetVersion; if ('dependencies' in pkg) { for (const dep of Object.keys(pkg['dependencies'])) { - if (dep.startsWith('arduino-')) { + if (dep.startsWith('arduino-ide-')) { pkg['dependencies'][dep] = targetVersion; } }