Skip to content

Commit

Permalink
fix: missing redirect for RC006 (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleTryon authored Apr 29, 2022
1 parent 4a32896 commit 532a5e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/review.bats
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ setup() {
skip
fi
SOURCE_URL=$(yq '.display.source_url' "${REVIEW_TEST_DIR}/src/@orb.yml")
HTTP_RESPONSE=$(curl -s -o /dev/null -w "%{http_code}" --retry 5 --retry-delay 5 "$SOURCE_URL")
HTTP_RESPONSE=$(curl -s -L -o /dev/null -w "%{http_code}" --retry 5 --retry-delay 5 "$SOURCE_URL")
if [[ "$HTTP_RESPONSE" -ne 200 ]]; then
echo
echo "Source URL: \"$SOURCE_URL\" is not reachable."
Expand Down

0 comments on commit 532a5e8

Please sign in to comment.