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