diff options
author | Ramon Fernandez <ramon@mongodb.com> | 2018-12-13 13:46:04 -0500 |
---|---|---|
committer | Ramon Fernandez <ramon@mongodb.com> | 2018-12-13 13:53:46 -0500 |
commit | 3739429dd92b92d1b0ab120911a23d50bf03c412 (patch) | |
tree | d9c49023d4a4b75418c4b07008e2434075ba3d42 /buildscripts/generate_compile_expansions_shared_cache.py | |
parent | 3a76585f4e5d53fc380e0c0db44fd06f45dcdb24 (diff) | |
download | mongo-r4.0.5.tar.gz |
SERVER-38581 Add is_release expansion and use it in the mobile buildr4.0.5-rc1r4.0.5
(cherry picked from commit d631498a098e9a1190beeb8c468dcf7cce96b89d)
Diffstat (limited to 'buildscripts/generate_compile_expansions_shared_cache.py')
-rwxr-xr-x | buildscripts/generate_compile_expansions_shared_cache.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/buildscripts/generate_compile_expansions_shared_cache.py b/buildscripts/generate_compile_expansions_shared_cache.py index 969b84c7790..f150764899f 100755 --- a/buildscripts/generate_compile_expansions_shared_cache.py +++ b/buildscripts/generate_compile_expansions_shared_cache.py @@ -64,9 +64,11 @@ def generate_version_expansions(): if version_parts[0]: expansions["suffix"] = "v4.0-latest" expansions["src_suffix"] = "v4.0-latest" + expansions["is_release"] = "false" else: expansions["suffix"] = version_line expansions["src_suffix"] = "r{0}".format(version_line) + expansions["is_release"] = "true" expansions["version"] = version_line return expansions |