From cc49017b3f33d164a3168973f6ed1cfa6f319a8f Mon Sep 17 00:00:00 2001 From: josch Date: Tue, 24 Sep 2024 19:37:22 +0200 Subject: [PATCH] d --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index f1e6489..acbaa69 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -105,8 +105,8 @@ function zipRelease() { function checkVersion(done) { - const moduleManifest = JSON.parse(fs.readFileSync('module.json')); - const manifestVersion = moduleManifest.version; + const Manifest = JSON.parse(fs.readFileSync('system.json')); + const manifestVersion = Manifest.version; const gitTag = process.env.CI_COMMIT_TAG; if (gitTag && manifestVersion !== gitTag) {