Skip to content

Commit

Permalink
Merge pull request #3957 from Tyriar/publish_addon
Browse files Browse the repository at this point in the history
Fix publishing addons as xterm
  • Loading branch information
Tyriar authored Jul 28, 2022
2 parents f6940aa + 8d308a7 commit f310f11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ function getNextBetaVersion(packageJson) {
}
const tag = 'beta';
let nextStableVersion;
if (packageJson.name = 'xterm') {
if (packageJson.name === 'xterm') {
nextStableVersion = `5.0.0`;
} else {
const stableVersion = packageJson.version.split('.');
Expand Down

0 comments on commit f310f11

Please sign in to comment.