Index: tools/bots/src-tarball.py |
diff --git a/tools/bots/src-tarball.py b/tools/bots/src-tarball.py |
index 3441e932506de512972e15c9abbff9e956a858d9..1c32034fb3eb67d04cf3c9ba77c34b1189c810c5 100644 |
--- a/tools/bots/src-tarball.py |
+++ b/tools/bots/src-tarball.py |
@@ -36,6 +36,9 @@ def SrcSteps(build_info): |
args = [sys.executable, './tools/create_tarball.py'] |
print 'Building src tarball' |
bot.RunProcess(args) |
+ print 'Building Debian packages' |
+ args = [sys.executable, './tools/create_debian_packages.py'] |
+ bot.RunProcess(args) |
if __name__ == '__main__': |
# We pass in None for build_step to avoid building the sdk. |