From 4259168243c481347cd5a7be2aa257f2c5b9a822 Mon Sep 17 00:00:00 2001 From: Alberto Iannaccone Date: Fri, 15 Apr 2022 10:27:55 +0200 Subject: [PATCH] fix update version script --- scripts/update-version.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } }