diff options
author | Ernie Hershey <ernie.hershey@10gen.com> | 2013-12-01 09:39:11 -0500 |
---|---|---|
committer | Ernie Hershey <ernie.hershey@10gen.com> | 2013-12-05 19:27:30 -0500 |
commit | 5a4c4003b14846aec41a4b6d235967652f281194 (patch) | |
tree | 6a825c1d989ce018561d2ddcdd23efc47d3d2513 /buildscripts | |
parent | e03a07465c6a580a23d328a98197474ec77c5329 (diff) | |
download | mongo-5a4c4003b14846aec41a4b6d235967652f281194.tar.gz |
SERVER-11773 Retain "mongodb" directory name in repo for backwards compatibility for enterprise packages
Diffstat (limited to 'buildscripts')
-rwxr-xr-x | buildscripts/packager-enterprise.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/packager-enterprise.py b/buildscripts/packager-enterprise.py index 2afed53a534..f7079b1fcff 100755 --- a/buildscripts/packager-enterprise.py +++ b/buildscripts/packager-enterprise.py @@ -132,7 +132,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: |