From 7a91835a9c6c4a20102acf9fb633439223eec556 Mon Sep 17 00:00:00 2001 From: Ernie Hershey Date: Thu, 28 Sep 2017 12:39:25 -0400 Subject: SERVER-31314 Update os name in macOS release tarballs --- SConstruct | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- cgit v1.2.1