Merge pull request #3983 from jsgh/jsconfigstatus

Make kodi-config return a zero exit status
This commit is contained in:
MilhouseVH 2019-11-15 17:52:36 +00:00 committed by GitHub
commit 85150686fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,4 +40,6 @@ else #arm
echo "MALLOC_MMAP_THRESHOLD_=8192" >> /run/libreelec/kodi.conf
fi
[ -f /storage/.config/kodi.conf ] && cat /storage/.config/kodi.conf >>/run/libreelec/kodi.conf
if [ -f /storage/.config/kodi.conf ] ; then
cat /storage/.config/kodi.conf >>/run/libreelec/kodi.conf
fi