From 76cbf4f8ffc27af607a9fedd0fb8a7d90479bfd3 Mon Sep 17 00:00:00 2001 From: sunghan Date: Thu, 11 May 2017 21:46:56 +0900 Subject: [PATCH] fix wrong usage of if on download script build/configs/artik053/artik053_download.sh: line 61: [: missing `]' --- build/configs/artik053/artik053_download.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/configs/artik053/artik053_download.sh b/build/configs/artik053/artik053_download.sh index 69d89fc..711d131 100755 --- a/build/configs/artik053/artik053_download.sh +++ b/build/configs/artik053/artik053_download.sh @@ -58,7 +58,7 @@ main() # check existence of firmware binaries if [ ! -f "${FW_DIR_PATH}/bl1.bin" ] ||\ [ ! -f "${FW_DIR_PATH}/bl2.bin" ] ||\ - [ ! -f "${FW_DIR_PATH}/sssfw.bin"] ||\ + [ ! -f "${FW_DIR_PATH}/sssfw.bin" ] ||\ [ ! -f "${FW_DIR_PATH}/wlanfw.bin" ]; then echo "Firmware binaries for ARTIK 053 are not existed" exit 1 -- 2.7.4