File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -344,7 +344,7 @@ private Process StartMpfProcess()
344
344
{
345
345
// On Linux and macOS, start the process through the terminal so it has a window.
346
346
#if UNITY_EDITOR_LINUX || UNITY_STANDALONE_LINUX
347
- process . StartInfo . Aguments = $ "-e { process . StartInfo . FileName } { args } ";
347
+ process . StartInfo . Arguments = $ "-e { process . StartInfo . FileName } { process . StartInfo . Arguments } ";
348
348
process . StartInfo . FileName = "x-terminal-emulator" ;
349
349
#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
350
350
// There is no way to pass arguments trough the macOS terminal,
@@ -450,11 +450,11 @@ private string GetExecutablePath()
450
450
var dir = Constants . MpfBinaryDirWindows ;
451
451
var name = Constants . MpfBinaryNameWindows ;
452
452
#elif UNITY_EDITOR_LINUX || UNITY_STANDALONE_LINUX
453
- var dir Constants. MpfBinaryDirLinux ;
454
- var name = Constants . MpfBinaryNameLinux
453
+ var dir = Constants . MpfBinaryDirLinux ;
454
+ var name = Constants . MpfBinaryNameLinux ;
455
455
#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
456
456
var dir = Constants . MpfBinaryDirMacOS ;
457
- var name = Constants . MpfBinaryNameMacOS
457
+ var name = Constants . MpfBinaryNameMacOS ;
458
458
#else
459
459
goto case ExecutableSource . ManuallyInstalled ;
460
460
#endif
You can’t perform that action at this time.
0 commit comments