From aeb8ac1314270dac484db1df1ed3b9c9b2796026 Mon Sep 17 00:00:00 2001 From: arussell-nvidia Date: Fri, 31 Jul 2026 16:10:48 -0400 Subject: [PATCH] docs: fix WebXR setup script paths (#852) Signed-off-by: Andrew Russell --- .../source/getting_started/build_from_source/webxr.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/source/getting_started/build_from_source/webxr.rst b/docs/source/getting_started/build_from_source/webxr.rst index 93a2e238f..cc4cf360b 100644 --- a/docs/source/getting_started/build_from_source/webxr.rst +++ b/docs/source/getting_started/build_from_source/webxr.rst @@ -31,11 +31,11 @@ From the project root: .. code-block:: bash - source deps/cloudxr/webxr_client/scripts/setup_cloudxr_env.sh - deps/cloudxr/webxr_client/scripts/download_cloudxr_sdk.sh + source scripts/setup_cloudxr_env.sh + scripts/download_cloudxr_sdk.sh -This will automatically download the CloudXR.js SDK and place it in ``deps/cloudxr/nvidia-cloudxr-6.3.0-rc2.tgz``. The -`package.json` is configured to install the SDK from this local file. +This will automatically download the CloudXR.js SDK and place it in ``deps/cloudxr/``. The +`package.json` is configured to install the SDK from the downloaded local package. 2. Install dependencies ----------------------- @@ -44,7 +44,7 @@ From the ``deps/cloudxr/webxr_client/`` directory: .. code-block:: bash - npm install ../nvidia-cloudxr-6.3.0-rc2.tgz + npm install 3. Build & Run --------------