fix(release): var not defined

This commit is contained in:
2025-07-12 16:08:37 -05:00
parent 36b1df7ef8
commit a282940d9b
2 changed files with 7 additions and 5 deletions

View File

@@ -30,7 +30,7 @@ const buildNumberPath = path.resolve(__dirname, "../BUILD_NUMBER");
// Load build number from BUILD_NUMBER file
let buildNumber = "0";
try {
rawBuild = fs.readFileSync(buildNumberPath, "utf8");
const rawBuild = fs.readFileSync(buildNumberPath, "utf8");
console.log("Raw build", rawBuild);
if (rawBuild) {
// const [numPart, namePart] = rawBuild.split("-");