···39 targetDirs=( "${prefix}/bin" "${prefix}/libexec" )
40 for targetDir in "${targetDirs[@]}"; do
41 if [[ -d "${targetDir}" ]]; then
42- find "${targetDir}" -type f -executable -print0 \
43 | while IFS= read -r -d '' file; do
44 echo "Wrapping program ${file}"
45 wrapProgram "${file}" "${gappsWrapperArgs[@]}"
···39 targetDirs=( "${prefix}/bin" "${prefix}/libexec" )
40 for targetDir in "${targetDirs[@]}"; do
41 if [[ -d "${targetDir}" ]]; then
42+ find -L "${targetDir}" -type f -executable -print0 \
43 | while IFS= read -r -d '' file; do
44 echo "Wrapping program ${file}"
45 wrapProgram "${file}" "${gappsWrapperArgs[@]}"