mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-24 11:16:51 +00:00
xbmc: dont clean temp dir if debugging is enabled
Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
parent
a8fc6b71a4
commit
7b1a13f1fe
@ -27,7 +27,11 @@ progress "setup XBMC"
|
||||
#
|
||||
# clean temp dir
|
||||
#
|
||||
rm -rf $HOME/.xbmc/temp/*
|
||||
# hack... we should always clean this temp dir, but we should keep
|
||||
# the logfiles in debug mode
|
||||
if [ ! "$DEBUG" = "yes" ]; then
|
||||
rm -rf $HOME/.xbmc/temp/*
|
||||
fi
|
||||
|
||||
#
|
||||
# add some default settings
|
||||
|
Loading…
x
Reference in New Issue
Block a user