Commit 7071b337 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm-sh-functions: reduce verbosing on epm_remove_tmp_files()

parent b761280c
......@@ -921,7 +921,8 @@ __epm_remove_tmp_files()
if [ -n "$to_clean_tmp_dirs" ] ; then
echo "$to_clean_tmp_dirs" | while read p ; do
rm $verbose -rf "$p" 2>/dev/null
[ -n "$verbose" ] && echo "rm -rf '$p'"
rm -rf "$p" 2>/dev/null
done
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment