From b807afd61ef496baf1e77ae1b6a5ad5c2f8d06a8 Mon Sep 17 00:00:00 2001 From: ColdWindScholar <3590361911@qq.com> Date: Mon, 2 Oct 2023 17:15:15 +0800 Subject: [PATCH] Fix pLUGIN rUNNER --- run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.py b/run.py index 7c97599..029c950 100644 --- a/run.py +++ b/run.py @@ -970,7 +970,7 @@ def dboot(infile, orig): print("Ramdisk Not Found.. %s" % e) return cpio = ebinner + os.sep + "cpio" - call("busybox find . | %s -H newc -R 0:0 -o -F ../ramdisk-new.cpio" % cpio) + os.system(ebinner + os.sep + "busybox find . | %s -H newc -R 0:0 -o -F ../ramdisk-new.cpio" % cpio) os.chdir(infile + os.sep) with open(infile + os.sep + "comp", "r", encoding='utf-8') as compf: comp = compf.read()