Chromium Code Reviews| 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) |
|
kustermann
2014/02/10 18:04:48
Our buildbots are not debian based, which means we
Søren Gjesse
2014/02/11 10:21:57
I agree me should build these for Debian and not f
|
| if __name__ == '__main__': |
| # We pass in None for build_step to avoid building the sdk. |