Remove shellchecke exception

This commit is contained in:
2022-11-18 10:42:49 -05:00
parent c64fef4baf
commit 1b79c31f26
2 changed files with 4 additions and 4 deletions

View File

@@ -11,8 +11,8 @@ do
install_path="${f#"$root"}"
mkdir -p "$(dirname "$install_path")"
# ln -snf "$PWD/$f" "$install_path"
# shellcheck disable=SC2046
install -C $(stat -c '-m %a -g %g -o %u' "$PWD/$f") "$PWD/$f" "$install_path"
read -ra perm_options < <(stat -c '-m %a -g %g -o %u' "$PWD/$f")
install -C "${perm_options[@]}" "$PWD/$f" "$install_path"
done
# vim: set filetype=bash: