Skip to content

Commit e711fc9

Browse files
committed
check-remote-image-existence.sh: change to tab
Signed-off-by: Norio Nomura <[email protected]>
1 parent 43c5506 commit e711fc9

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

hack/check-remote-image-existence.sh

+12-12
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ script_dir=$(dirname "$0")
66

77
result=0
88
for template in $(realpath "${script_dir}"/../examples/*.yaml "${script_dir}"/./test-templates/*.yaml|sort -u); do
9-
for location in $(yq eval '.images[].location' "${template}"); do
10-
if [[ "${location}" == http* ]]; then
11-
response=$(curl -L -s -I -o /dev/null -w "%{http_code}" "${location}")
12-
if [[ ${response} != "200" ]]; then
13-
line=$(grep -n "${location}" "${template}" | cut -d ':' -f 1)
14-
echo "::error file=${template},line=${line}::response: ${response} for ${location}"
15-
result=1
16-
else
17-
echo "response: ${response} for ${location}"
18-
fi
19-
fi
20-
done
9+
for location in $(yq eval '.images[].location' "${template}"); do
10+
if [[ "${location}" == http* ]]; then
11+
response=$(curl -L -s -I -o /dev/null -w "%{http_code}" "${location}")
12+
if [[ ${response} != "200" ]]; then
13+
line=$(grep -n "${location}" "${template}" | cut -d ':' -f 1)
14+
echo "::error file=${template},line=${line}::response: ${response} for ${location}"
15+
result=1
16+
else
17+
echo "response: ${response} for ${location}"
18+
fi
19+
fi
20+
done
2121
done
2222

2323
exit "${result}"

0 commit comments

Comments
 (0)