airgap/scripts/build-os

9 lines
212 B
Plaintext
Raw Normal View History

#!/bin/bash
[ -f /.dockerenv ] || { echo "please run in supplied container"; exit 1; }
set -e; source environment
2020-06-29 22:55:34 +00:00
build_dir="${BUILD_DIR?}"
buildroot_dir="${build_dir}/buildroot"
(cd "${buildroot_dir}"; make )