- in_git_dir($working, sub {
- run_or_die('git', 'checkout', '--quiet', '--force', $branch);
- run_or_die('git', 'revert', '--no-commit', $sha1);
- run_or_die('git', 'commit', '-m', "revert $sha1", '-a');
- });
+ run_or_die_in($working, 'git', 'checkout', '--quiet', '--force', $branch);
+ run_or_die_in($working, 'git', 'revert', '--no-commit', $sha1);
+ run_or_die_in($working, 'git', 'commit', '-m', "revert $sha1", '-a');