diff --git a/twrpRepacker.cpp b/twrpRepacker.cpp index 735f3022..d959836e 100755 --- a/twrpRepacker.cpp +++ b/twrpRepacker.cpp @@ -91,7 +91,7 @@ std::string twrpRepacker::Unpack_Image(const std::string& Source_Path, const std if (TWFunc::copy_file(Source_Path, destination, 0644)) return std::string(); } - std::string command = "cd " + Temp_Folder_Destination + " && /system/bin/magiskboot unpack -h "; + std::string command = "cd " + Temp_Folder_Destination + " && /system/bin/magiskboot unpack -h -n "; command = command + "'" + Source_Path +"'"; std::string magisk_unpack_output;