14 lines
226 B
Plaintext
14 lines
226 B
Plaintext
// cell remove <alias|path> - Remove a package from dependencies or shop
|
|
|
|
var shop = use('shop')
|
|
|
|
if (args.length < 1) {
|
|
log.console("Usage: cell remove <alias|path>")
|
|
$_.stop()
|
|
return
|
|
}
|
|
|
|
shop.remove(args[0])
|
|
|
|
$_.stop()
|