From 3547112a44b64abc60e53874f59204241410ef9f Mon Sep 17 00:00:00 2001 From: KianBahasadri <101868619+KianBahasadri@users.noreply.github.com> Date: Sat, 27 Apr 2024 15:31:09 -0400 Subject: [PATCH] fixed typo --- Docs/build_docker_unreal.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docs/build_docker_unreal.md b/Docs/build_docker_unreal.md index 5f06efc60..b15f3dc58 100644 --- a/Docs/build_docker_unreal.md +++ b/Docs/build_docker_unreal.md @@ -55,7 +55,7 @@ __1. Build the CARLA prerequisites image.__ The following command will build an image called `carla-prerequisites` using `Prerequisites.Dockerfile`. In this build we install the compiler and required tools, download the Unreal Engine 4.26 fork and compile it. You will need to provide your login details (use a Github Personal Access Token instead of a password) as build arguments for the download of Unreal Engine to be successful: ```sh -docker build --build-arg EPIC_USER= --build-arg EPIC_PASS= -t carla-prerequisites -f Prerequisites.Dockerfile . +docker build --build-arg EPIC_USER= --build-arg EPIC_PASS= -t carla-prerequisites -f Prerequisites.Dockerfile . ``` __2. Build the final CARLA image.__