simplified exclusion of Kodi

This commit is contained in:
Jandalf81
2018-08-11 15:10:11 +02:00
parent ad3995b708
commit b0247204d0

View File

@@ -220,26 +220,20 @@ doFullSync ()
if [ "${debug}" = "1" ]; then debug; fi
if [ "${direction}" == "up" ]
if [ "${direction}" == "up" ] && [ "${system}" != "kodi" ]
then
if [ "${system}" != "kodi" ]
then
getROMFileName
prepareFilter
getTypeOfRemote
uploadSaves
fi
getROMFileName
prepareFilter
getTypeOfRemote
uploadSaves
fi
if [ "${direction}" == "down" ]
if [ "${direction}" == "down" ] && [ "${system}" != "kodi" ]
then
if [ "${system}" != "kodi" ]
then
getROMFileName
prepareFilter
getTypeOfRemote
downloadSaves
fi
getROMFileName
prepareFilter
getTypeOfRemote
downloadSaves
fi
if [ "${direction}" == "full" ]