QMK/build.sh

13 lines
345 B
Bash
Raw Normal View History

2022-11-18 23:33:15 -08:00
#!/bin/bash
# Uses the qmk container found here:
# https://git.betalupi.com/Mark/docker
#
# Be careful, it may not be using the latest QMK.
docker run -it \
--user $(id -u):$(id -g) \
-v "$(pwd)/output:/build_output" \
-v "$(pwd)/keyboards:/qmk_firmware/keyboards:ro" \
-e QMK_TARGET="betalupi_ergodox:default" \
git.betalupi.com/mark/qmk