2022-08-28 10:06:40 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
docker run -it --rm \
|
2022-08-28 10:19:31 -05:00
|
|
|
-v "$(pwd)/config:/home/builder/zmk-config" \
|
2022-08-28 10:06:40 -05:00
|
|
|
-v "$(pwd)/out:/home/builder/out" \
|
2024-05-06 12:19:26 -05:00
|
|
|
zmk bash -c '
|
2022-08-28 10:06:40 -05:00
|
|
|
west build --pristine -b nice_nano_v2 -- -DZMK_CONFIG=/home/builder/zmk-config -DSHIELD=corne_left && \
|
|
|
|
cp build/zephyr/zmk.uf2 ~/out/corne_left.uf2 && \
|
|
|
|
west build --pristine -b nice_nano_v2 -- -DZMK_CONFIG=/home/builder/zmk-config -DSHIELD=corne_right && \
|
|
|
|
cp build/zephyr/zmk.uf2 ~/out/corne_right.uf2'
|