Fix restore of multiple archives
diff --git a/partition.cpp b/partition.cpp
index 0644fba..f1ce8bd 100644
--- a/partition.cpp
+++ b/partition.cpp
@@ -1253,7 +1253,7 @@
Full_FileName = restore_folder + "/" + Backup_FileName + split_index;
while (TWFunc::Path_Exists(Full_FileName)) {
ui_print("Restoring archive %i...\n", index + 1);
- Command = "cd " + Backup_Path + " && tar -xf '" + Full_FileName + "'";
+ Command = "tar -xf '" + Full_FileName + "'";
LOGI("Restore command: '%s'\n", Command.c_str());
system(Command.c_str());
index++;