Chromium Code Reviews| Index: third_party/pkg/update_all.sh |
| diff --git a/tools/bots/steps_clank.py b/third_party/pkg/update_all.sh |
| similarity index 61% |
| copy from tools/bots/steps_clank.py |
| copy to third_party/pkg/update_all.sh |
| index 1c8af346e6495547e2000c6d43b56745ff2e104d..52aa2dfe36f7c0a665974c639297a45cad733902 100755 |
| --- a/tools/bots/steps_clank.py |
| +++ b/third_party/pkg/update_all.sh |
| @@ -1,12 +1,13 @@ |
| -#!/usr/bin/python |
| +#!/bin/bash |
| # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| # for details. All rights reserved. Use of this source code is governed by a |
| # BSD-style license that can be found in the LICENSE file. |
| -import sys |
| +# bail on error |
| +set -e |
| -def main(): |
| - sys.exit(0) |
| - |
| -if __name__ == '__main__': |
| - main() |
| +./update_angular.sh |
| +./update_di.sh |
| +./update_js.sh |
| +./update_perf.sh |
| +./update_route_hierarchical.sh |
|
Siggi Cherem (dart-lang)
2014/01/03 22:21:13
if we had the function, then here it could be done
|