Skip to content
Snippets Groups Projects
Commit 9a1b1d8e authored by Sebastian Pape's avatar Sebastian Pape
Browse files

Correction of the Linux-Call

parent 54667ec4
Branches
No related tags found
No related merge requests found
...@@ -81,7 +81,7 @@ if (RootWindow.IsValid()) RootWindow->Minimize(); ...@@ -81,7 +81,7 @@ if (RootWindow.IsValid()) RootWindow->Minimize();
FPlatformProcess::WaitForProc(processes[num_nodes - 1]); FPlatformProcess::WaitForProc(processes[num_nodes - 1]);
} }
#elif PLATFORM_LINUX #elif PLATFORM_LINUX
FProcHandle process = FPlatformProcess::CreateProc(*FString("/home/av006de/demos_UNREAL/.misc/scripts/cave/launch_aixcave_editor.sh"), *("\"" + (FPaths::ConvertRelativePathToFull(FPaths::EngineDir()) + "\\Binaries\\Linux\\UE4Editor\" ") + FPaths::GetProjectFilePath() + " " + FEngineVersion::Current().GetMajor() + FEngineVersion::Current().GetMinor()), true, false, false, NULL, 0, NULL, NULL); FProcHandle process = FPlatformProcess::CreateProc(*FString("/home/av006de/demos_UNREAL/.misc/scripts/cave/launch_aixcave_editor.sh"), *("\"" + (FPaths::ConvertRelativePathToFull(FPaths::EngineDir()) + "Binaries/Linux/UE4Editor\" ") + FPaths::ConvertRelativePathToFull(FPaths::GetProjectFilePath()) + " " + FString::FromInt(FEngineVersion::Current().GetMajor()) + FString::FromInt(FEngineVersion::Current().GetMinor())), true, false, false, NULL, 0, NULL, NULL);
FPlatformProcess::WaitForProc(process); FPlatformProcess::WaitForProc(process);
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment