Files
cell/remove.ce
2025-12-18 18:43:23 -06:00

14 lines
222 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()