From 87a051ac112f130a689db1d91336d32f9d67c9c2 Mon Sep 17 00:00:00 2001 From: Leif Lundberg Date: Sun, 19 Oct 2025 09:17:51 +0200 Subject: [PATCH] Use VCPKG_ROOT variable instead of hardcoded path. Co-authored-by: WiserTixx --- docs/en/game/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/game/getting-started.md b/docs/en/game/getting-started.md index d2f8b989..39a78dd0 100644 --- a/docs/en/game/getting-started.md +++ b/docs/en/game/getting-started.md @@ -93,7 +93,7 @@ cmake --build bin --parallel ``` Then clean the vcpkg cache: ```bash - rm -rf ~/vcpkg/buildtrees/openssl + rm -rf $VCPKG_ROOT/buildtrees/openssl ``` And retry the cmake configuration command.