mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-08 17:42:56 +01:00
Merge branch 'correctly-output-FORCE_BUILD-equals-true' into 'master'
Correctly output the $FORCE_BUILD=true message in custom-docker-build See merge request gitlab-org/gitlab-build-images!279
This commit is contained in:
commit
58bb4295ac
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue