do not attempt to shell execute the $FORCE_BUILD=true notification for custom builds

This commit is contained in:
Mathew Emborsky 2020-03-10 17:07:27 -04:00
parent d851c4e93b
commit 9fd16aafea
No known key found for this signature in database
GPG key ID: C2C56DE0A435A464

View file

@ -219,7 +219,7 @@ function build_custom_if_needed() {
if [[ "$FORCE_BUILD" == "true" ]] || ! image_already_exists $full_image_name; then
docker_command=$(generate_command $@)
if [[ "$FORCE_BUILD" == "true" ]]; then
echo "Force building $build_image_name due to `\$FORCE_BUILD=true` with $docker_command"
echo "Force building $build_image_name due to \$FORCE_BUILD=true with $docker_command"
else
echo "Building $build_image_name with $docker_command"
fi