From 50e28e41fd1ce2b6c2d09e23f140b821e52d4532 Mon Sep 17 00:00:00 2001 From: gutosie Date: Sat, 11 Apr 2020 09:48:15 +0200 Subject: [PATCH] fix_bub --- NeoBoot/extract.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NeoBoot/extract.py b/NeoBoot/extract.py index 352afca..c6773ab 100644 --- a/NeoBoot/extract.py +++ b/NeoBoot/extract.py @@ -321,7 +321,7 @@ def NEOBootMainEx(source, target, stopenigma, CopyFiles, CopyKernel, TvList, Ste if os.path.exists('/etc/CCcam.cfg'): cmd = 'cp -r /etc/CCcam.cfg %s/ImageBoot/%s/etc > /dev/null 2>&1' % (media, target) rc = os.system(cmd) - if os.path.exists('/etc/tuxbox/config') and os.path.exists('/usr/lib/enigma2/python/PLi') and os.path.exists('%s/ImageBoot/%s/usr/lib/enigma2/python/PLi' % (media, target)): + if os.path.exists('/etc/tuxbox/config'): cmd = 'cp -r /etc/tuxbox/config %s/ImageBoot/%s/etc/tuxbox > /dev/null 2>&1' % (media, target) rc = os.system(cmd) os.system('tar -czf /tmp/NeoBoot_CAM.tar.gz /usr/bin/*cam* /etc/init.d/softcam*')