escaping paths with spaces, updated ellekit

This commit is contained in:
eevee
2025-03-30 14:54:36 +03:00
parent db63ef6ff2
commit 1c3b7ed4f2
4 changed files with 8 additions and 8 deletions

View File

@@ -43,7 +43,7 @@ internal class IviMachOBinary(string fileName)
new ProcessStartInfo
{
FileName = "otool",
Arguments = $"-l {FullName}",
Arguments = $"-l \"{FullName}\"",
RedirectStandardOutput = true
}
);
@@ -58,7 +58,7 @@ internal class IviMachOBinary(string fileName)
new ProcessStartInfo
{
FileName = "lipo",
Arguments = $"-thin arm64 {FullName} -output {FullName}"
Arguments = $"-thin arm64 \"{FullName}\" -output \"{FullName}\""
}
);