From 9a1b1d8ea4c9e26ea177958fc91f74d640036a49 Mon Sep 17 00:00:00 2001
From: Sebastian Pape <Sebastian.Pape@rwth-aachen.de>
Date: Tue, 24 Sep 2019 13:43:35 +0200
Subject: [PATCH] Correction of the Linux-Call

---
 Source/CAVELaunchButton/Private/CAVELaunchButton.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Source/CAVELaunchButton/Private/CAVELaunchButton.cpp b/Source/CAVELaunchButton/Private/CAVELaunchButton.cpp
index 342df53..38a97e3 100644
--- a/Source/CAVELaunchButton/Private/CAVELaunchButton.cpp
+++ b/Source/CAVELaunchButton/Private/CAVELaunchButton.cpp
@@ -81,7 +81,7 @@ if (RootWindow.IsValid()) RootWindow->Minimize();
 		FPlatformProcess::WaitForProc(processes[num_nodes - 1]);
 	}
 #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);
 #endif
 
-- 
GitLab