This repository has been archived on 2026-05-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
docker-old/qmk/entrypoint.sh
T
2022-11-18 23:29:49 -08:00

12 lines
282 B
Bash

#!/bin/bash
if [[ -z "$QMK_TARGET" ]]; then
echo "You must provide a target to build!" 1>&2
exit 1
fi
make $QMK_TARGET
# Move output files to output directory.
# These are the only extensions qmk can produce,
# as far as I know.
mv *.{bin,hex,uf2} /build_output > /dev/null 2>&1