Skip to content

Commit 9b4a7da

Browse files
committed
[fix] : Fixed test
1 parent fdef1be commit 9b4a7da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1232,7 +1232,7 @@ make_overisofs() {
12321232

12331233
_copy_isofs() {
12341234
local _dir="${1%/}"
1235-
[[ -d "${_dir}" ]] && cp -af "${_dir}"/* "${isofs_dir}"
1235+
if [[ -d "${_dir}" ]]; then cp -af "${_dir}"/* "${isofs_dir}"; fi
12361236
}
12371237

12381238
_copy_isofs "${script_path}/channels/share/over_isofs.any"

0 commit comments

Comments
 (0)