Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/usr/bin/env python | |
| 2 # Copyright (c) 2016 The Chromium Authors. All rights reserved. | |
| 3 # Use of this source code is governed by a BSD-style license that can be | |
| 4 # found in the LICENSE file. | |
| 5 | |
| 6 """ | |
| 7 A simple wrapper to flatc, executes whatever is passed as parameters. | |
| 8 """ | |
| 9 | |
| 10 import subprocess | |
| 11 import sys | |
| 12 | |
| 13 def main(args): | |
| 14 return subprocess.call(args[1:]) | |
| 15 | |
| 16 if __name__ == '__main__': | |
| 17 sys.exit(main(sys.argv)) | |
| OLD | NEW |