From 5b93add4c49d768ee68df5e4becd7b6d8e3e8f4b Mon Sep 17 00:00:00 2001 From: MatthewBeshay <92357869+MatthewBeshay@users.noreply.github.com> Date: Fri, 3 Apr 2026 12:14:15 +1100 Subject: [PATCH] docs: fix binary path and run instructions in README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 73f7bd60d..c1d86cda9 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ meson compile -C build The binary is output to: ``` -./build/Minecraft.Client/Minecraft.Client +./build/targets/app/Minecraft.Client ``` #### Clean @@ -131,10 +131,10 @@ meson setup build ## Running -In order to run the compiled binary, you have a compiled copy of the game's assets in your current working directory. These assets are automatically copied to the `Minecraft.Client` folder in your build directory. To run the game, your current working directory must be in this folder. +Game assets are automatically copied to the build output directory during compilation. Run from that directory: ```sh -cd build/Minecraft.Client +cd build/targets/app ./Minecraft.Client ```