* Install completion script to the appropriate location * * @param options - Options for installation (shell type, verbose output)
(options: InstallOptions = {})
| 91 | * @param options - Options for installation (shell type, verbose output) |
| 92 | */ |
| 93 | async install(options: InstallOptions = {}): Promise<void> { |
| 94 | const shell = this.resolveShellOrExit(options.shell, 'install'); |
| 95 | if (!shell) return; |
| 96 | |
| 97 | await this.installForShell(shell, options.verbose || false); |
| 98 | } |
| 99 | |
| 100 | /** |
| 101 | * Uninstall completion script from the installation location |
nothing calls this directly
no test coverage detected