Exclude the dumpsys dumps from backups, to avoid error 255 when restoring data backups

Change-Id: I7a83b3789828c1400e31007e868263c54d8eb38c
diff --git a/partition.cpp b/partition.cpp
index 6f61de3..82cb944 100755
--- a/partition.cpp
+++ b/partition.cpp
@@ -1180,6 +1180,7 @@
 		DataManager::SetValue("tw_has_data_media", 1);
 		backup_exclusions.add_absolute_dir("/data/data/com.google.android.music/files");
 		backup_exclusions.add_absolute_dir("/data/per_boot"); // DJ9,14Jan2020 - exclude this dir to prevent "error 255" on AOSP ROMs that create and lock it
+		backup_exclusions.add_absolute_dir("/data/vendor/dumpsys");
 		backup_exclusions.add_absolute_dir("/data/cache");
 		wipe_exclusions.add_absolute_dir(Mount_Point + "/misc/vold"); // adopted storage keys
 		ExcludeAll(Mount_Point + "/.layout_version");