summaryrefslogtreecommitdiff
path: root/buildscripts/packager.py
diff options
context:
space:
mode:
authorSpencer Jackson <spencer.jackson@mongodb.com>2019-03-22 13:22:44 -0400
committerSpencer Jackson <spencer.jackson@mongodb.com>2019-03-29 11:42:39 -0400
commite5d7bb7eaf2b26be77d6011036387bc21debd129 (patch)
tree0919871c61293b4091e82740b689b2c24b5b5fcd /buildscripts/packager.py
parent92d941353e82b3febd6105cea2d7e7a17d912477 (diff)
downloadmongo-e5d7bb7eaf2b26be77d6011036387bc21debd129.tar.gz
SERVER-40242 Update banner inclusions for vendored tools
Diffstat (limited to 'buildscripts/packager.py')
-rwxr-xr-xbuildscripts/packager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/packager.py b/buildscripts/packager.py
index f5c265580b0..5a753f6e1c1 100755
--- a/buildscripts/packager.py
+++ b/buildscripts/packager.py
@@ -492,7 +492,7 @@ def unpack_binaries_into(build_os, arch, spec, where):
try:
sysassert(["tar", "xvzf", rootdir + "/" + tarfile(build_os, arch, spec)])
release_dir = glob('mongodb-linux-*')[0]
- for releasefile in "bin", "LICENSE-Community.txt", "README", "THIRD-PARTY-NOTICES", "MPL-2":
+ for releasefile in "bin", "LICENSE-Community.txt", "README", "THIRD-PARTY-NOTICES", "THIRD-PARTY-NOTICES.gotools", "MPL-2":
print "moving file: %s/%s" % (release_dir, releasefile)
os.rename("%s/%s" % (release_dir, releasefile), releasefile)
os.rmdir(release_dir)