(self)
| 690 | return folder |
| 691 | |
| 692 | def run(self): |
| 693 | self.vcs = get_vcs(self.get_working_dir()) |
| 694 | status_command = getattr(self, '{0}_status_command'.format(self.vcs['name']), None) |
| 695 | if status_command: |
| 696 | self.run_command(status_command(), self.status_done, working_dir=self.vcs['root']) |
| 697 | |
| 698 | def git_status_command(self): |
| 699 | return [get_user_command('git') or 'git', 'status', '--porcelain'] |
nothing calls this directly
no test coverage detected