(self, args, parsed_globals)
| 414 | self._invoker = invoker |
| 415 | |
| 416 | def __call__(self, args, parsed_globals): |
| 417 | command_components = [self._alias_value[1:]] |
| 418 | command_components.extend( |
| 419 | compat_shell_quote(a, shell=True) for a in args |
| 420 | ) |
| 421 | command = ' '.join(command_components) |
| 422 | LOG.debug( |
| 423 | 'Using external alias %r with value: %r to run: %r', |
| 424 | self._alias_name, |
| 425 | self._alias_value, |
| 426 | command, |
| 427 | ) |
| 428 | return self._invoker(command, shell=True) |
| 429 | |
| 430 | |
| 431 | class InternalAliasSubCommand(BaseInternalAliasCommand): |
nothing calls this directly
no test coverage detected