Fix "Install Recovery Ramdisk" of a file which contains a space in the name

Change-Id: Ib2b1deee7427d9ac565676068b11982171f7a98d
diff --git a/partitionmanager.cpp b/partitionmanager.cpp
index 79068f7..31e9098 100755
--- a/partitionmanager.cpp
+++ b/partitionmanager.cpp
@@ -3088,7 +3088,7 @@
 		if (TWFunc::copy_file(Source_Path, destination, 0644))
 			return false;
 	}
-	std::string command = "cd " + Temp_Folder_Destination + " && /sbin/magiskboot --unpack -h " + Source_Path;
+	std::string command = "cd " + Temp_Folder_Destination + " && /sbin/magiskboot --unpack -h '" + Source_Path +"'";
 	if (TWFunc::Exec_Cmd(command) != 0) {
 		LOGINFO("Error unpacking %s!\n", Source_Path.c_str());
 		gui_msg(Msg(msg::kError, "unpack_error=Error unpacking image."));