From 9db0f413249aea1d4a89c69c65b4eab54216acb6 Mon Sep 17 00:00:00 2001 From: Chinchien Lin Date: Thu, 19 Jun 2025 10:33:35 +1200 Subject: [PATCH] fix [index.rst]: inconsistent name for build folder --- documentation/index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/index.rst b/documentation/index.rst index 8737f111..86d64a5e 100644 --- a/documentation/index.rst +++ b/documentation/index.rst @@ -27,7 +27,7 @@ Quick start instructions for GNU/Linux and macOS (bash):: pip install numpy here=$(pwd) cmake -S lungsim -B build-lungsim -D Python_EXECUTABLE=$here/venv-aether/bin/python - cd lungsim-build + cd build-lungsim make pip install -e src/bindings/python @@ -39,7 +39,7 @@ Quick start instructions for Windows (cmd):: pip install --upgrade pip pip install numpy cmake -S lungsim -B build-lungsim -D Python_EXECUTABLE=%cd%/venv-aether/Scripts/python - cd lungsim-build + cd build-lungsim cmake --build . --config Release pip install -e src/bindings/python/Release