Skip to content
Snippets Groups Projects
Commit 21b6a908 authored by Gerardo Pozzi's avatar Gerardo Pozzi
Browse files

[archiso] Fix find cmd in _cleanup()


Fix FS#34075

Signed-off-by: default avatarGerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
parent b77f0413
No related branches found
No related tags found
No related merge requests found
......@@ -268,7 +268,7 @@ _cleanup () {
find "${work_dir}/root-image/var/tmp" -mindepth 1 -delete
fi
# Delete package pacman related files.
find "${work_dir}" -name "*.pacnew" -name "*.pacsave" -name "*.pacorig" -delete
find "${work_dir}" \( -name "*.pacnew" -o -name "*.pacsave" -o -name "*.pacorig" \) -delete
_msg_info "Done!"
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment