[buildone] fix mistaken use of continue

When I moved this code in to its own script, I moved it
out of a loop, so we can no longer `continue` and should
`return` instead.
This commit is contained in:
James Westby
2019-10-04 14:41:15 +01:00
committed by James Westby
parent b4db65f619
commit c6b8578e09
+1 -1
View File
@@ -88,7 +88,7 @@ build() {
built_image_id="$(./import build/$DIST.tar "$current_ts")"
else
log "Image didn't change"
continue
return
fi
fi
docker tag $built_image_id $BASENAME:$DIST