Skip to content

Commit 8ba048c

Browse files
committed
check-remote-image-existence.sh: remove double quotation in [[ ]]
Signed-off-by: Norio Nomura <[email protected]>
1 parent e711fc9 commit 8ba048c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hack/check-remote-image-existence.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ script_dir=$(dirname "$0")
77
result=0
88
for template in $(realpath "${script_dir}"/../examples/*.yaml "${script_dir}"/./test-templates/*.yaml|sort -u); do
99
for location in $(yq eval '.images[].location' "${template}"); do
10-
if [[ "${location}" == http* ]]; then
10+
if [[ ${location} == http* ]]; then
1111
response=$(curl -L -s -I -o /dev/null -w "%{http_code}" "${location}")
1212
if [[ ${response} != "200" ]]; then
1313
line=$(grep -n "${location}" "${template}" | cut -d ':' -f 1)

0 commit comments

Comments
 (0)