Skip to content

Commit

Permalink
fix(build-system): don't wait 30s+ always (#2494)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludamad authored Sep 25, 2023
1 parent d833483 commit 89d700d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-system/scripts/build
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ for STAGE in $STAGES; do
if [ -n "$CONTENT_HASH" ]; then
echo "Pulling stage: $STAGE"
STAGE_IMAGE_LAST_URI=$ECR_URL/$REPOSITORY:cache-$CONTENT_HASH-$STAGE
if fetch_image $STAGE_IMAGE_LAST_URI; then
if try_fetch_image $STAGE_IMAGE_LAST_URI; then
STAGE_CACHE_FROM="--cache-from $STAGE_IMAGE_LAST_URI"
fi
fi
Expand Down

0 comments on commit 89d700d

Please sign in to comment.