Skip to content

Commit

Permalink
Fix unify versions script to allow 1.6
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Dzikowski <[email protected]>
  • Loading branch information
dzikowski committed Feb 6, 2025
1 parent b6c2b93 commit b496824
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unifyVersions.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ if (optionalVersion) {
console.log("Applying version from command line:", optionalVersion);

// just a sanity check
if (!optionalVersion.startsWith("1.5.")) {
console.error("Version must start with '1.5.'");
if (!optionalVersion.startsWith("1.6.")) {
console.error("Version must start with '1.6.'");
process.exit(1);
}
packages.forEach(({ packageJson, packageJsonPath }) => {
Expand Down

0 comments on commit b496824

Please sign in to comment.