From 5e2fc2515b7a1d2a2a9bd780a61f3df2f1d079b2 Mon Sep 17 00:00:00 2001 From: gutosie Date: Sun, 25 Dec 2022 11:43:54 +0200 Subject: [PATCH] Update extract.py --- NeoBoot/extract.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NeoBoot/extract.py b/NeoBoot/extract.py index b0598d9..7fd6266 100644 --- a/NeoBoot/extract.py +++ b/NeoBoot/extract.py @@ -953,7 +953,7 @@ def NEOBootExtract(source, target, ZipDelete, Nandsim): #Instalacja *.zip elif os.path.exists(sourcefile) is True: - os.system('unzip ' + sourcefile) + os.system('unzip -f -o ' + sourcefile) if ZipDelete == 'True': os.system('rm -rf ' + sourcefile)