Files
cell/scripts/remove.ce
2025-12-08 13:22:07 -06:00

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()