async run()

in lib/cli.js [60:71]


  async run(argv) {
    const shell = process.env.SHELL;
    if (shell.endsWith('/zsh')) {
      let script = `# Installation: ${this.app.name} completion >> ~/.bashrc\n`;
      script += `# or ${this.app.name} completion >> ~/.bash_profile on OSX.\n`;
      script += `complete -C ${this.app.name} ${this.app.name}\n`;
      script += `# end of ${this.app.name} completion`;
      console.log(script);
    } else {
      // 
    }
  }