Update unpack.py

This commit is contained in:
gutosie
2022-12-05 22:57:50 +02:00
committed by GitHub
parent 37463b77e3
commit bb5257f930

View File

@@ -119,6 +119,10 @@ class InstallImage(Screen, ConfigListScreen):
fn = fn.replace('.tar.bz2', '')
sourcelist.append((fn, fn))
continue
if fn.find('.tar') != -1:
fn = fn.replace('.tar', '')
sourcelist.append((fn, fn))
continue
if fn.find('.mb') != -1:
fn = fn.replace('.mb', '')
sourcelist.append((fn, fn))