9 lines
140 B
Bash
Executable File
9 lines
140 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
cd $(dirname $0)
|
|
|
|
# embassy-nrf
|
|
|
|
(cd embassy-nrf-examples; cargo build --target thumbv7em-none-eabi --bins) |