Transforms a tool name like copy-info-plist to CopyInfoPlist
(self, name_string)
| 30 | getattr(self, method)(*args[1:]) |
| 31 | |
| 32 | def _CommandifyName(self, name_string): |
| 33 | """Transforms a tool name like copy-info-plist to CopyInfoPlist""" |
| 34 | return name_string.title().replace("-", "") |
| 35 | |
| 36 | def ExecFlock(self, lockfile, *cmd_list): |
| 37 | """Emulates the most basic behavior of Linux's flock(1).""" |