(build_folder, existing_files, response_files)
| 254 | |
| 255 | |
| 256 | def update_build_folder_with_rendered_files(build_folder, existing_files, response_files): |
| 257 | changed_files = set() |
| 258 | changed_files.update(response_files.keys()) |
| 259 | |
| 260 | existing_files = store_response_files(build_folder, response_files, existing_files) |
| 261 | |
| 262 | return existing_files, changed_files |
| 263 | |
| 264 | |
| 265 | def copy_folder_content(source_folder, destination_folder, ignore_folders=None): |
nothing calls this directly
no test coverage detected