1
0

fix finding log when there are *.dmp files in Logs folder

This commit is contained in:
GenZmeY 2022-05-10 23:20:26 +03:00
parent c53f0436b2
commit 49fcaf67a2

View File

@ -556,7 +556,7 @@ function compiled ()
function find_log () function find_log ()
{ {
find "$KFLogs" -type f -printf '%T+ %p\n' | sort -r | head -n1 | cut -f2- -d" " find "$KFLogs" -type f -name '*.log' -printf '%T+ %p\n' | sort -r | head -n1 | cut -f2- -d" "
} }
function compile () function compile ()