fix finding log when there are *.dmp files in Logs folder
This commit is contained in:
parent
c53f0436b2
commit
49fcaf67a2
2
builder
2
builder
@ -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 ()
|
||||||
|
Loading…
Reference in New Issue
Block a user