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