(path)
| 103 | print("File '%s' does not exist" % path) |
| 104 | |
| 105 | def process_flags(path): |
| 106 | global build_flags |
| 107 | if not os.path.isfile(path): |
| 108 | return |
| 109 | parse_flags(path) |
| 110 | |
| 111 | def condense_flags(): |
| 112 | global build_flags |
no test coverage detected