OLD | NEW |
---|---|
1 #!/usr/bin/python | 1 #!/usr/bin/env python |
Nirnimesh
2011/11/23 21:42:25
Please skip the files in chrome/test/chromeos/auto
| |
2 | 2 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved. |
3 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | |
4 # 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 |
5 # found in the LICENSE file. | 4 # found in the LICENSE file. |
6 | 5 |
7 import common, commands, logging, os | 6 import logging |
7 import os | |
8 | |
9 import common | |
10 import commands | |
8 from autotest_lib.client.bin import utils | 11 from autotest_lib.client.bin import utils |
9 | 12 |
10 version = 1 | 13 version = 1 |
11 | 14 |
15 | |
12 def setup(top_dir): | 16 def setup(top_dir): |
13 return | 17 return |
14 | 18 |
15 | 19 |
16 pwd = os.getcwd() | 20 def main(): |
17 utils.update_version(pwd + '/src', False, version, setup, None) | 21 pwd = os.getcwd() |
22 utils.update_version(pwd + '/src', False, version, setup, None) | |
23 | |
24 | |
25 if __name__ == '__main__': | |
26 sys.exit(main()) | |
OLD | NEW |