summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorRichard Kreuter <richard@10gen.com>2010-04-23 17:55:01 -0400
committerRichard Kreuter <richard@10gen.com>2010-04-23 17:55:01 -0400
commitb51ccb0204940f685c3f341dac3fdc108e24f350 (patch)
tree1b4de4f550045b43ff10bcf28e68b23c81293df3 /buildscripts
parent52fe13e41a71309749333aa5026f6b442f15b9ef (diff)
downloadmongo-b51ccb0204940f685c3f341dac3fdc108e24f350.tar.gz
Minor fix in makealldists.py.
Diffstat (limited to 'buildscripts')
-rw-r--r--buildscripts/makealldists.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildscripts/makealldists.py b/buildscripts/makealldists.py
index 029929396a8..1ec2e3e88f9 100644
--- a/buildscripts/makealldists.py
+++ b/buildscripts/makealldists.py
@@ -33,8 +33,8 @@ def pushrepo(repodir):
s3name2='distros'+tail
s3cp(bucket, fn, s3name1)
s3cp(bucket, fn, s3name2)
- if s3name.endswith('.deb'):
- newdebs.append(s3name)
+ if s3name1.endswith('.deb'):
+ newdebs.append(s3name1)
# FIXME: we ought to clean out old debs eventually, but this will
# blow away too much if we're trying to push a subset of what's
# supposed to be available.