Skip to content

Commit

Permalink
handle if input version is develop
Browse files Browse the repository at this point in the history
  • Loading branch information
georgemccabe committed Nov 15, 2024
1 parent f821480 commit 52c63bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metplus/component_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def get_component_version(input_component, input_version, output_component,
return output_format.format(X=x, Y=y, Z=z, N=dev_version)

def _is_development(input_version, get_dev, rc_is_dev):
if '-dev' in input_version:
if '-dev' in input_version or input_version == "develop":
return True

check_exts = ['-beta']
Expand Down

0 comments on commit 52c63bc

Please sign in to comment.