You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Files not present in base file but are added in the input file are not applied in the output delta. The new file is present in the resulting delta zip but is not applied in the updater-script.
Example:
v1.zip: /system/test.txt, /system/test-delete.txt
v2.zip: /system/text.txt (modified), /system/test-new.txt
Resulting delta will apply patch for test.txt and delete test-delete.txt, but test-new.txt will not be extracted to /system. /system/test-new.txt is present in the delta zip but not applied in the updater-script.
For this example, the updater-script will have:
ui_print("Verifying current system...");
apply_patch_check("/system/test.txt", ...) || abort("\"/system/test.txt\" has unexpected contents.");
ui_print("Patching system files...");
apply_patch("/system/test.txt", "-", ..., package_extract_file("patch/system/test.txt.p"));
ui_print("Removing files...");
delete("system/test-delete.txt");
It should also extract /system/test-new.txt
The text was updated successfully, but these errors were encountered:
Files not present in base file but are added in the input file are not applied in the output delta. The new file is present in the resulting delta zip but is not applied in the updater-script.
Example:
v1.zip: /system/test.txt, /system/test-delete.txt
v2.zip: /system/text.txt (modified), /system/test-new.txt
Resulting delta will apply patch for test.txt and delete test-delete.txt, but test-new.txt will not be extracted to /system. /system/test-new.txt is present in the delta zip but not applied in the updater-script.
For this example, the updater-script will have:
It should also extract /system/test-new.txt
The text was updated successfully, but these errors were encountered: