1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

tests: remove all debug logs when using die

Since die is called from a shell script, there is no need
to report any recent lvm2 command debug traces.
This commit is contained in:
Zdenek Kabelac 2021-09-06 14:59:10 +02:00
parent 52b5620476
commit 337053c56a

View File

@ -15,7 +15,7 @@ IFS_NL='
'
die() {
rm -f debug.log
rm -f debug.log*
echo -e "$@" >&2
return 1
}