From fac9800564a509d6bb2dc024b4c7986e404501fe Mon Sep 17 00:00:00 2001 From: "Nat Kershaw (MSFT)" Date: Fri, 13 Sep 2024 15:47:51 -0700 Subject: [PATCH] Update build-from-source.md (#22093) --- docs/genai/howto/build-from-source.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/genai/howto/build-from-source.md b/docs/genai/howto/build-from-source.md index a1220a2badd35..956c67470a863 100644 --- a/docs/genai/howto/build-from-source.md +++ b/docs/genai/howto/build-from-source.md @@ -81,31 +81,31 @@ All of the build commands below have a `--config` argument, which takes the foll #### Windows CPU build ```bash -python build.py --config `Release` +python build.py --config Release ``` #### Windows DirectML build ```bash -python build.py --use_dml --config `Release` +python build.py --use_dml --config Release ``` #### Linux build ```bash -python build.py --config `Release` +python build.py --config Release ``` #### Linux CUDA build ```bash -python build.py --use_cuda --config `Release` +python build.py --use_cuda --config Release ``` #### Mac build ```bash -python build.py --config `Release` +python build.py --config Release ``` ### Build Java API