uci-docker-build/test/build
David Kebler d89001bc51 reorganize source (src) using /rootfs to copy any files into image
moved distros.csv to root of repo
reogranize packages to use *.system.pkgs or system/*.pkgs
2024-01-14 14:57:09 -08:00

10 lines
280 B
Bash
Executable file

#!/bin/bash
[[ $1 = "-f" ]] && force=force && shift
if [[ ! $(udbuild image exists -e test.env) || $force ]] ; then
echo $force building test image
# udbuild -p -e test.env -n
udbuild -e test.env
else
echo using existing image, use -f to force rebuild
fi