diff --git a/aptosaurus.sh b/aptosaurus.sh index f497525..b01fbae 100755 --- a/aptosaurus.sh +++ b/aptosaurus.sh @@ -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 -n1 -I{} bash -c '_symlink_deb "{}"'; exit_code="$?"; cd - || exit 2; package_count_after="$(find ${dir_repo} -type f -name "*.deb" | wc -l)";