D | patch.py | 316 yml = yaml.load(f, Loader=SafeLoader) 317 return pykwalify.core.Core(source_data=yml, schema_data=patches_schema).validate() 328 yml = self.load_yml(args, args.subcommand in ["gh-fetch"]) 329 if yml is None: 342 method[args.subcommand](args, yml, args.dst_modules) 344 def apply(self, args, yml, dst_mods=None): argument 345 patches = yml.get("patches", []) 415 self.clean(args, yml, patched_mods) 419 def clean(self, args, yml, dst_mods=None): argument 420 clean_cmd = yml["clean-command"] [all …]
|