summaryrefslogtreecommitdiff
path: root/buildscripts/packager.py
diff options
context:
space:
mode:
authorErnie Hershey <ernie.hershey@10gen.com>2013-11-30 11:42:52 -0500
committerErnie Hershey <ernie.hershey@10gen.com>2013-12-05 19:27:30 -0500
commite03a07465c6a580a23d328a98197474ec77c5329 (patch)
tree9fa6e1db99025dc23413c6660195257b52b0de20 /buildscripts/packager.py
parent328860612f91e1de4fbe97b0a098aa31353cd152 (diff)
downloadmongo-e03a07465c6a580a23d328a98197474ec77c5329.tar.gz
SERVER-11773 Retain "mongodb" directory name in repo for backwards compatibility
Diffstat (limited to 'buildscripts/packager.py')
-rw-r--r--buildscripts/packager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/packager.py b/buildscripts/packager.py
index 5d10e2b4b09..fb6c5695ba2 100644
--- a/buildscripts/packager.py
+++ b/buildscripts/packager.py
@@ -133,7 +133,7 @@ class Distro(object):
layout (as distinct from where that distro's packaging building
tools place the package files)."""
if re.search("^(debian|ubuntu)", self.n):
- return "repo/%s/dists/dist/mongodb/binary-%s/" % (self.n, self.archname(arch))
+ return "repo/%s/dists/dist/10gen/binary-%s/" % (self.n, self.archname(arch))
elif re.search("(redhat|fedora|centos)", self.n):
return "repo/%s/os/%s/RPMS/" % (self.n, self.archname(arch))
else: