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