From b41706320067b0d9eee181009453fc2a77b4171b Mon Sep 17 00:00:00 2001 From: Alireza Date: Tue, 12 Nov 2024 13:53:36 -0500 Subject: [PATCH] fix version json --- version.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.mjs b/version.mjs index 7375ce91e..17de99025 100644 --- a/version.mjs +++ b/version.mjs @@ -23,7 +23,7 @@ async function run() { console.log('Branch: release'); await fs.writeFile('./commit.txt', currentCommitHash); const version = await fs.readFile('./version.txt', 'utf-8'); - const nextVersion = version.trim(); + nextVersion = version.trim(); console.log('Version from version.txt:', nextVersion); } else { console.log('Branch: master');