Bugfix: Use xargs --null option

This commit is contained in:
Starbeamrainbowlabs 2019-08-06 00:47:23 +01:00
parent 3e36f05df8
commit 20729c8676
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ task_update() {
package_count_before="$(find ${dir_repo} -type f -name "*.deb" | wc -l)";
export -f _symlink_deb;
cd "${dir_repo}" || exit 2;
find "../${dir_sources}" -type f -name "*.deb" -print0 | xargs -n1 -I{} bash -c '_symlink_deb "{}"';
find "../${dir_sources}" -type f -name "*.deb" -print0 | xargs --null -n1 -I{} bash -c '_symlink_deb "{}"';
exit_code="$?";
cd - || exit 2;
package_count_after="$(find ${dir_repo} -type f -name "*.deb" | wc -l)";