diff --git a/Docs/build_linux.md b/Docs/build_linux.md index f2b5df971..6abf10a1d 100644 --- a/Docs/build_linux.md +++ b/Docs/build_linux.md @@ -60,8 +60,8 @@ git clone --depth=1 -b 4.24 https://github.com/EpicGames/UnrealEngine.git ~/Unre cd ~/UnrealEngine_4.24 # Download and install the UE patch -wget https://carla-releases.s3.eu-west-3.amazonaws.com/Linux/UE_Patch/430667-13636743-patch.txt ~Download//430667-13636743-patch.txt -patch --strip=4 < ~/Downloads/430667-13636743-patch.txt +wget https://carla-releases.s3.eu-west-3.amazonaws.com/Linux/UE_Patch/430667-13636743-patch.txt ~/430667-13636743-patch.txt +patch --strip=4 < ~/430667-13636743-patch.txt # Build UE ./Setup.sh && ./GenerateProjectFiles.sh && make @@ -162,8 +162,8 @@ cd ~/UnrealEngine_4.24 Get a patch for Unreal Engine. The patch fixes some Vulkan visualization issues that may occur when changing the map. Download and install it with the following commands. ```sh -wget https://carla-releases.s3.eu-west-3.amazonaws.com/Linux/UE_Patch/430667-13636743-patch.txt ~Download//430667-13636743-patch.txt -patch --strip=4 < ~/Downloads/430667-13636743-patch.txt +wget https://carla-releases.s3.eu-west-3.amazonaws.com/Linux/UE_Patch/430667-13636743-patch.txt ~/430667-13636743-patch.txt +patch --strip=4 < ~/430667-13636743-patch.txt ``` Make the build. diff --git a/README.md b/README.md index c17ed9c2b..ce22038ff 100644 --- a/README.md +++ b/README.md @@ -68,8 +68,8 @@ The Linux build needs for an UE patch to solve some visualization issues regardi ```sh # Download and install the UE patch cd ~/UnrealEngine_4.24 -wget https://carla-releases.s3.eu-west-3.amazonaws.com/Linux/UE_Patch/430667-13636743-patch.txt ~Download//430667-13636743-patch.txt -patch --strip=4 < ~/Downloads/430667-13636743-patch.txt +wget https://carla-releases.s3.eu-west-3.amazonaws.com/Linux/UE_Patch/430667-13636743-patch.txt ~/430667-13636743-patch.txt +patch --strip=4 < ~/430667-13636743-patch.txt # Build UE ./Setup.sh && ./GenerateProjectFiles.sh && make ```