diff --git a/scripts/bumpVersion.js b/scripts/bumpVersion.js index 2a4a938ea..53d501a81 100644 --- a/scripts/bumpVersion.js +++ b/scripts/bumpVersion.js @@ -8,7 +8,7 @@ const versionFilePath = path.join(__dirname, "../config/appVersion.js"); let content = fs.readFileSync(versionFilePath, "utf8"); // Version auslesen -const versionRegex = /APP_VERSION = "(\d+)\.(\d+)\.(\d+)"/; +const versionRegex = /export const APP_VERSION = "(\d+)\.(\d+)\.(\d+)"/; const match = content.match(versionRegex); if (!match) {