From 7841de387c089db187c21cc6c2ab97fc8caaedfc Mon Sep 17 00:00:00 2001 From: Borgia Leiva Date: Tue, 21 Oct 2025 11:18:07 +0200 Subject: [PATCH] Changed cargo command for installation from source procedure --- README.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e75bd30..f6388de 100644 --- a/README.md +++ b/README.md @@ -39,8 +39,13 @@ A simple **unoffical** open-source Fortnite launcher for Windows made in Rust wi - [colog](https://github.com/chrivers/rust-colog) #### Procedure -```powershell -git clone https://github.com/a-mayb3/godo-launcher --depth 1 && -cd godo-launcher && -cargo build --release +```bash +git clone --depth 1 https://github.com/a-mayb3/godo-launcher +cd godo-launcher +cargo install --path . --locked +``` +```powershell +git clone --depth 1 https://github.com/a-mayb3/godo-launcher +set-location godo-launcher +cargo install --path . --locked ```