From 422d4f8658f9cd18763fb2d44cbe848ca7068d18 Mon Sep 17 00:00:00 2001 From: turrrbina <147263744+turrrbina@users.noreply.github.com> Date: Fri, 24 Apr 2026 21:50:44 +0200 Subject: [PATCH] Added 'export VCPKG_ROOT' to update part I didnt think of this, the exports are gone after an initial build and the user runs into problems when updating. I didnt put in the "export PATH=$VCPKG_ROOT:$PATH" because imho its not necessary --- docs/en/game/getting-started.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/en/game/getting-started.md b/docs/en/game/getting-started.md index a28cb845..14367ee6 100644 --- a/docs/en/game/getting-started.md +++ b/docs/en/game/getting-started.md @@ -143,6 +143,7 @@ Note that this assumes you put the launcher's binary you compiled earlier into ` If you already built the launcher and want to update it: ```bash +export VCPKG_ROOT="$(pwd)/vcpkg" cd BeamMP-Launcher git fetch --tags ```