Transforms a tool name like recursive-mirror to RecursiveMirror.
(self, name_string)
| 71 | return getattr(self, method)(*args[1:]) |
| 72 | |
| 73 | def _CommandifyName(self, name_string): |
| 74 | """Transforms a tool name like recursive-mirror to RecursiveMirror.""" |
| 75 | return name_string.title().replace("-", "") |
| 76 | |
| 77 | def _GetEnv(self, arch): |
| 78 | """Gets the saved environment from a file for a given architecture.""" |