shellcheck disable

This commit is contained in:
thek4n 2025-03-25 10:34:08 +03:00
parent 9c6b4b0ebf
commit 4213b395ea

View File

@ -57,6 +57,7 @@ _link_files_in_sandbox() (
echo "installing: ${targetfile}" echo "installing: ${targetfile}"
if [ "$(string_get_first_char "${targetfile}")" = "%" ]; then if [ "$(string_get_first_char "${targetfile}")" = "%" ]; then
files="$(map_get_value "${TARGETS}" "$(string_exclude_first_char "${targetfile}")")" files="$(map_get_value "${TARGETS}" "$(string_exclude_first_char "${targetfile}")")"
#shellcheck disable=SC2086
_link_files_in_sandbox ${files} _link_files_in_sandbox ${files}
else else
if [ ! "$(dirname "${targetfile}")" = "." ]; then if [ ! "$(dirname "${targetfile}")" = "." ]; then
@ -140,6 +141,7 @@ install_target() (
execute_pre_hook "${target}" execute_pre_hook "${target}"
recursive_execute_pre_hooks "${target}" recursive_execute_pre_hooks "${target}"
#shellcheck disable=SC2086
_link_files_in_sandbox ${files} _link_files_in_sandbox ${files}
__install_from_sandbox __install_from_sandbox
recursive_execute_post_hooks "${target}" recursive_execute_post_hooks "${target}"