OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright 2014 The Chromium Authors. All rights reserved. | 2 # Copyright 2014 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 from telemetry.util import find_dependencies | 6 """This program wraps an arbitrary command and prints "1" if the command ran |
| 7 successfully.""" |
7 | 8 |
| 9 import subprocess |
| 10 import sys |
8 | 11 |
9 if __name__ == '__main__': | 12 if not subprocess.call(sys.argv[1:]): |
10 find_dependencies.main() | 13 print 1 |
| 14 else: |
| 15 print 0 |
OLD | NEW |