summaryrefslogtreecommitdiff
path: root/buildscripts/packager_enterprise.py
diff options
context:
space:
mode:
authorRamon Fernandez <ramon@mongodb.com>2018-06-20 12:30:42 -0400
committerRamon Fernandez <ramon@mongodb.com>2018-06-20 12:33:04 -0400
commitc6b10c46cce635574297577f75f57b792b508893 (patch)
tree0a38caf01b707d01ed233529ab3c4cbf9c79e90c /buildscripts/packager_enterprise.py
parent43f8fc8c45b854c192f39368f843352c479008f5 (diff)
downloadmongo-c6b10c46cce635574297577f75f57b792b508893.tar.gz
SERVER-35665 Update license on all artifacts
License for Community artifacts is in the LICENSE-Community.txt file. License for Enterprise artifacts is in the LICENSE-Enterprise.txt file. This change also updates deb/rpm/msi packages.
Diffstat (limited to 'buildscripts/packager_enterprise.py')
-rwxr-xr-xbuildscripts/packager_enterprise.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/packager_enterprise.py b/buildscripts/packager_enterprise.py
index 00861e21870..dafd2258ef3 100755
--- a/buildscripts/packager_enterprise.py
+++ b/buildscripts/packager_enterprise.py
@@ -218,7 +218,7 @@ def unpack_binaries_into(build_os, arch, spec, where):
try:
packager.sysassert(["tar", "xvzf", rootdir + "/" + tarfile(build_os, arch, spec)])
release_dir = glob('mongodb-linux-*')[0]
- for releasefile in "bin", "snmp", "LICENSE.txt", "README", "THIRD-PARTY-NOTICES", "MPL-2":
+ for releasefile in "bin", "snmp", "LICENSE-Enterprise.txt", "README", "THIRD-PARTY-NOTICES", "MPL-2":
os.rename("%s/%s" % (release_dir, releasefile), releasefile)
os.rmdir(release_dir)
except Exception: