mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-12 12:51:22 +04:00
10 lines
151 B
Bash
Executable File
10 lines
151 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x -e
|
|
|
|
rm bootloader/.obj/f*/flash || true
|
|
make -C bootloader -j9 flash
|
|
|
|
rm firmware/.obj/f*/flash || true
|
|
make -C firmware -j9 flash
|