diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-04 12:27:50 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-04 12:27:50 +0100 |
commit | 46349b5e772b40bb0dda614ad4317200408f2e67 (patch) | |
tree | d037eeae6d635d548375b4d23375eb14e3764fdf | |
parent | add an "integration" test (diff) | |
download | config-links-46349b5e772b40bb0dda614ad4317200408f2e67.tar.gz config-links-46349b5e772b40bb0dda614ad4317200408f2e67.zip |
db.sh: fix Xenial tests
Please see the parent commit for the description of the problem.
-rw-r--r-- | src/db.sh | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -192,6 +192,7 @@ shared_file_present() { } link_all_entries() { + local -a shared_var_dirs=() local shared_var_dir find "$shared_root_dir" \ @@ -201,6 +202,10 @@ link_all_entries() { -regex ".*/$var_name_regex\$" \ -printf '%P\0' | while IFS= read -d '' -r shared_var_dir; do + shared_var_dirs+=("$shared_var_dir") + done + + for shared_var_dir in ${shared_var_dirs[@]+"${shared_var_dirs[@]}"}; do dump "shared directory: $shared_root_dir$shared_var_dir" local shared_path |