uci-docker-caddy/build
David Kebler 55648e8155 Initial commit
fully operational caddy death star
2023-03-31 13:43:26 -07:00

8 lines
No EOL
276 B
Text
Executable file

build=${UDBUILD:-$(command -v udbuild)}
if [[ $build ]];then
echo copying conf directory into image source before build
/bin/cp -R -p conf/. src/init/opt/caddy/conf
$build -a "$@"
else
echo can not find UCI Docker Build script, run ./install from the uci-docker-build repo
fi