Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/usr/bin/env python | |
| 2 # | |
| 3 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | |
| 4 # for details. All rights reserved. Use of this source code is governed by a | |
| 5 # BSD-style license that can be found in the LICENSE file. | |
| 6 # | |
| 7 # A script which will be invoked from gyp to list the current version. | |
|
Andrei Mouravski
2013/02/08 23:36:31
Current version of what?
Jacob
2013/02/09 02:37:28
of the sdk
| |
| 8 # | |
| 9 # Usage: list_version | |
| 10 # | |
| 11 | |
| 12 import sys | |
| 13 import utils | |
| 14 | |
| 15 def Main(argv): | |
| 16 print(utils.GetVersion()) | |
| 17 | |
| 18 if __name__ == '__main__': | |
| 19 sys.exit(Main(sys.argv)) | |
| OLD | NEW |