13 lines
348 B
Bash
Executable File
13 lines
348 B
Bash
Executable File
#!/bin/bash
|
|
[[ $1 = "-f" ]] && force=force && shift
|
|
if [[ ! $(udbuild image exists -e ../build/.env) || $force ]] ; then
|
|
echo $force building image
|
|
pushd ../build > /dev/null || exit
|
|
./build -p -e .env -a build.env $@
|
|
popd > /dev/null
|
|
echo done building image
|
|
else
|
|
echo using existing image, use -f to force rebuild
|
|
fi
|
|
|