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).
This commit is contained in:
Matteo Tognolo 2023-01-31 23:11:14 +01:00 committed by GitHub
parent 046aa4e16f
commit ddc706f1e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,5 +57,5 @@ cd rustdesk
mkdir -p target/debug mkdir -p target/debug
wget https://raw.githubusercontent.com/c-smile/sciter-sdk/master/bin.win/x64/sciter.dll wget https://raw.githubusercontent.com/c-smile/sciter-sdk/master/bin.win/x64/sciter.dll
mv sciter.dll target/debug mv sciter.dll target/debug
cargo run python3 ./build.py
``` ```