()
| 40 | |
| 41 | |
| 42 | def normalize_config_settings(): |
| 43 | global CACHE, PORTS, CLOSURE_COMPILER, NODE_JS |
| 44 | |
| 45 | NODE_JS = listify(NODE_JS) |
| 46 | CLOSURE_COMPILER = listify(CLOSURE_COMPILER) |
| 47 | if not CACHE: |
| 48 | CACHE = path_from_root('cache') |
| 49 | if not PORTS: |
| 50 | PORTS = os.path.join(CACHE, 'ports') |
| 51 | |
| 52 | |
| 53 | def normalize_relative_python_path(): |
no test coverage detected