Husky Installation

This commit is contained in:
ISA
2025-03-04 14:20:29 +01:00
parent 0c78dcb314
commit 862dce6625

View File

@@ -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) {