Remove url option from open call in cli

This commit is contained in:
Labhansh Agrawal 2021-03-07 11:24:06 +05:30
parent f930e85501
commit ed8337db71

View file

@ -157,7 +157,7 @@ args.command(
(name, args_) => {
const pluginName = args_[0];
assertPluginName(pluginName);
open(`http://ghub.io/${pluginName}`, {wait: false, url: true});
open(`http://ghub.io/${pluginName}`, {wait: false});
process.exit(0);
},
['d', 'h', 'home']