From e6b3e2ec23e861be57da8625cc2578cdc804ecd3 Mon Sep 17 00:00:00 2001 From: Alberto Iannaccone Date: Tue, 19 Apr 2022 16:04:08 +0200 Subject: [PATCH] fix update version script (#958) --- 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 2cf9b74b..f504e525 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; } }