mirror of
https://github.com/whoeevee/ivinject.git
synced 2026-01-08 23:25:03 +00:00
escaping paths with spaces, updated ellekit
This commit is contained in:
@@ -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}\""
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user