D | patch.py | 201 yml = yaml.load(f, Loader=SafeLoader) 202 if not yml: 205 pykwalify.core.Core(source_data=yml, schema_data=patches_schema).validate() 218 method[args.subcommand](args, yml) 220 def apply(self, args, yml): argument 221 patches = yml.get("patches", []) 288 self.clean(args, yml, patched_mods) 292 def clean(self, args, yml, mods=None): argument 293 clean_cmd = yml["clean-command"] 294 checkout_cmd = yml["checkout-command"] [all …]
|