Changed cargo command for installation from source procedure

This commit is contained in:
Marta Borgia Leiva 2025-10-21 11:18:07 +02:00 committed by GitHub
parent a96f007e4b
commit 7841de387c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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
```