Skip to content

Commit

Permalink
Fix until for EAP compat (#6212)
Browse files Browse the repository at this point in the history
  • Loading branch information
mai93 committed Mar 5, 2024
1 parent cfc162d commit ac9d7c3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build_defs/stamp_plugin_xml.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,10 @@ def main():
idea_version_element.setAttribute("until-build",
until_build_numbers[build_version])
else:
idea_version_element.setAttribute("until-build", build_version + ".*")
if is_eap:
idea_version_element.setAttribute("until-build", _parse_major_version(build_version) + ".*")
else:
idea_version_element.setAttribute("until-build", build_version + ".*")

if args.changelog_file:
if idea_plugin.getElementsByTagName("change-notes"):
Expand Down

0 comments on commit ac9d7c3

Please sign in to comment.