From f54084c8883bc4d83fac09fd38d721a1dac71636 Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Sun, 3 Apr 2022 22:06:36 +0800 Subject: [PATCH] Update beta release process --- extra/beta/update-version.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/extra/beta/update-version.js b/extra/beta/update-version.js index aa75562d..e452f32d 100644 --- a/extra/beta/update-version.js +++ b/extra/beta/update-version.js @@ -10,11 +10,6 @@ const version = process.env.VERSION; console.log("Beta Version: " + version); -if (!oldVersion || oldVersion.includes("-beta.")) { - console.error("Error: old version should not be a beta version?"); - process.exit(1); -} - if (!version || !version.includes("-beta.")) { console.error("invalid version, beta version only"); process.exit(1);