Skip to content
This repository is currently being migrated. It's locked while the migration is in progress.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion lint-terraform/install-certs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ for CERT in ${CA_CERTS[@]}
do
echo "Installing $CERT"
OUT=$ADDITIONAL_CA_CERTS/${CERT##*/}
test 200 == "$(curl -sw %{http_code} $CERT -o $OUT)"
until test 200 == "$(curl -sw %{http_code} $CERT -o $OUT)"; do
echo "retrying"
done
done
for cert in $(find $ADDITIONAL_CA_CERTS -type f -name "*.cer")
do
Expand Down
4 changes: 3 additions & 1 deletion slack-socket/install-certs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ for CERT in ${CA_CERTS[@]}
do
echo "Installing $CERT"
OUT=$ADDITIONAL_CA_CERTS/${CERT##*/}
test 200 == "$(curl -sw %{http_code} $CERT -o $OUT)"
until test 200 == "$(curl -sw %{http_code} $CERT -o $OUT)"; do
echo "retrying"
done
done
for cert in $(find $ADDITIONAL_CA_CERTS -type f -name "*.cer")
do
Expand Down