Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix built image id output for subsequent builds
For the first `docker build` task in a job, DOCKER_TASK_BUILT_IMAGES is correct. But for subsequent builds, instead of appending the new image's hash it was duplicating the list, e.g. - after first build: firstBuildId - after second build: firstBuildId;firstBuildId - after third build: firstBuildId;firstBuildId;firstBuildId;firstBuildId - etc. Instead we append the new image hash, as was seemingly the original intention. So now: - after first build: firstBuildId - after second build: firstBuildId;secondBuildId - after third build: firstBuildId;secondBuildId;thirdBuildId - etc.
- Loading branch information