Skip to content

Commit

Permalink
Fix release script
Browse files Browse the repository at this point in the history
  • Loading branch information
louislam committed Oct 29, 2024
1 parent 03bdaf7 commit 93cf63c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion extra/beta/update-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const util = require("../../src/util");

util.polyfill();

const version = process.env.VERSION;
const version = process.env.RELEASE_BETA_VERSION;

console.log("Beta Version: " + version);

Expand Down
2 changes: 1 addition & 1 deletion extra/update-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const util = require("../src/util");

util.polyfill();

const newVersion = process.env.VERSION;
const newVersion = process.env.RELEASE_VERSION;

console.log("New Version: " + newVersion);

Expand Down
2 changes: 1 addition & 1 deletion extra/update-wiki-version.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const childProcess = require("child_process");
const fs = require("fs");

const newVersion = process.env.VERSION;
const newVersion = process.env.RELEASE_VERSION;

if (!newVersion) {
console.log("Missing version");
Expand Down

0 comments on commit 93cf63c

Please sign in to comment.