Skip to content

Commit

Permalink
Fix bug introduced by e9acd7b: remove - from -self suffix
Browse files Browse the repository at this point in the history
Mozilla Addon version parts must follow the <number-a><string-b><number-c><string-d> format,
where strings must be non-numeric ASCII characters.
See https://developer.mozilla.org/en-US/docs/Mozilla/Toolkit_version_format
  • Loading branch information
diegodlh committed Jul 1, 2020
1 parent 3e29db6 commit fb7e04f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function getVersion(buildType, selfDistribution) {
let version = `${gitInfo.tag.substr(1)}`;

if (selfDistribution) {
version = version + '-self';
version = version + 'self';
}

let versionName = 'Unofficial Build';
Expand Down

0 comments on commit fb7e04f

Please sign in to comment.