Files
cell/remove.ce
2025-12-21 10:37:02 -06:00

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