(name, path)
| 173 | |
| 174 | |
| 175 | def find(name, path): |
| 176 | for root, dirs, files in os.walk(path): |
| 177 | if name in files and os.path.isfile(os.path.join(root, name)): |
| 178 | return os.path.abspath(os.path.join(root, name)) |
| 179 | |
| 180 | |
| 181 | def parse_env(dump_dir, bin_dir=None): |