def cmd_rm_pkg(args): """Remove a package from this project.""" with gfutils.find() as grailfile: grailfile.rm_pkg(args.pkgname)
def cmd_add_pkg(args): """Add a package to the manifest.""" with gfutils.find() as grailfile: grailfile.add_pkg(args.pkgname)