From ddc706f1e7e3d9ab2681c31d97376b8a1362e3a4 Mon Sep 17 00:00:00 2001 From: Matteo Tognolo <40798421+tognols@users.noreply.github.com> Date: Tue, 31 Jan 2023 23:11:14 +0100 Subject: [PATCH] Change "cargo run" with "python3 build.py" As of today, if you follow the docs you'll not be able to "cargo run" and build the app: you'll build will fail making you wonder what have you done wrong. Building with build.py after following the docs, instead, will just work and compile the app. The default, then, should be python3 build.py (atleast until this problem it's fixed and you can "cargo run" succesfully on Windows). --- content/dev/build/windows/_index.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/dev/build/windows/_index.en.md b/content/dev/build/windows/_index.en.md index 7ac53e5..685cc20 100644 --- a/content/dev/build/windows/_index.en.md +++ b/content/dev/build/windows/_index.en.md @@ -57,5 +57,5 @@ cd rustdesk mkdir -p target/debug wget https://raw.githubusercontent.com/c-smile/sciter-sdk/master/bin.win/x64/sciter.dll mv sciter.dll target/debug -cargo run +python3 ./build.py ```