From 9b4a7da3b0cfd0796dbf16fe37be85a913b43026 Mon Sep 17 00:00:00 2001 From: hayao Date: Fri, 23 Oct 2020 17:45:31 +0900 Subject: [PATCH] [fix] : Fixed test --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index aa10d7ad..a7f03b49 100755 --- a/build.sh +++ b/build.sh @@ -1232,7 +1232,7 @@ make_overisofs() { _copy_isofs() { local _dir="${1%/}" - [[ -d "${_dir}" ]] && cp -af "${_dir}"/* "${isofs_dir}" + if [[ -d "${_dir}" ]]; then cp -af "${_dir}"/* "${isofs_dir}"; fi } _copy_isofs "${script_path}/channels/share/over_isofs.any" -- 2.11.0