From bb5257f93042cfe660a6e88a6f3f21916fda34be Mon Sep 17 00:00:00 2001 From: gutosie Date: Mon, 5 Dec 2022 22:57:50 +0200 Subject: [PATCH] Update unpack.py --- NeoBoot/unpack.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/NeoBoot/unpack.py b/NeoBoot/unpack.py index 6ebe738..39317fa 100644 --- a/NeoBoot/unpack.py +++ b/NeoBoot/unpack.py @@ -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))