1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-12 04:34:43 +04:00

Flip slashes for Windows builds (Backslash -> Forward Slash)

Tried building this myself using these directions, kept getting errors.

Flipped the backslash to a forward slash, and got a successful build. 🤷‍♂️
This commit is contained in:
Jacob Witt
2023-04-17 20:38:18 -05:00
committed by GitHub
parent 1a17699356
commit 62da755431

View File

@@ -53,13 +53,13 @@ Check out `documentation/fbt.md` for details on building and flashing firmware.
### Compile everything for development
```sh
.\fbt.cmd FIRMWARE_APP_SET=debug_pack updater_package
./fbt.cmd FIRMWARE_APP_SET=debug_pack updater_package
```
### Compile everything for release + get updater package to update from microSD card
```sh
.\fbt.cmd COMPACT=1 DEBUG=0 updater_package
./fbt.cmd COMPACT=1 DEBUG=0 updater_package
```
Check `dist/` for build outputs.