mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-04-10 19:15:12 +00:00
LIBMAN: using for to don't fall in a subshell
This commit is contained in:
parent
d91eaaef78
commit
d49e5b2bc5
|
@ -39,7 +39,7 @@ done
|
|||
copied_files=()
|
||||
failed_files=()
|
||||
|
||||
find "$1" -type f -name "*.so*" | while IFS= read -r file; do
|
||||
for file in $(find "$1" -type f -name "*.so*"); do
|
||||
# Define destination file path
|
||||
dest_file="$target_dir/$(basename "$file")"
|
||||
|
||||
|
|
Loading…
Reference in a new issue