From 379118db5830f4d63ae8eed0cd8c2d138be62ea3 Mon Sep 17 00:00:00 2001 From: Minecraftku_hei <31839741+kebufu@users.noreply.github.com> Date: Sat, 17 Apr 2021 18:36:19 +0800 Subject: [PATCH] Update BIOS.lua --- Installer/BIOS.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Installer/BIOS.lua b/Installer/BIOS.lua index 38e70e93..3c3b9570 100644 --- a/Installer/BIOS.lua +++ b/Installer/BIOS.lua @@ -11,4 +11,7 @@ while true do end handle.close() -load(data)() \ No newline at end of file +local success,reason=xpcall(load(data),debug.traceback) +if not success then + error(reason) +end