diff options
author | Ernie Hershey <ernie.hershey@10gen.com> | 2017-09-28 12:39:25 -0400 |
---|---|---|
committer | Ernie Hershey <ernie.hershey@10gen.com> | 2017-10-03 20:38:27 -0400 |
commit | 7a91835a9c6c4a20102acf9fb633439223eec556 (patch) | |
tree | da7ee60d9c55a4a38f066f6db960a817dee46dd9 /SConstruct | |
parent | 6ed8e31519f14f163606f17199f4cb9b0dccf281 (diff) | |
download | mongo-7a91835a9c6c4a20102acf9fb633439223eec556.tar.gz |
SERVER-31314 Update os name in macOS release tarballs
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 802398f8ef3..47fb231b59b 100644 --- a/SConstruct +++ b/SConstruct @@ -3073,7 +3073,8 @@ def getSystemInstallName(): # between the names used by env.TargetOSIs/env.GetTargetOSName should be added # to the translation dictionary below. os_name_translations = { - 'windows': 'win32' + 'windows': 'win32', + 'macOS': 'osx' } os_name = env.GetTargetOSName() os_name = os_name_translations.get(os_name, os_name) |