From 2d39d5e1b75277c534c802b36bd8cf92493e46f1 Mon Sep 17 00:00:00 2001 From: igorkll <69525332+igorkll@users.noreply.github.com> Date: Thu, 30 Jun 2022 22:06:09 +0300 Subject: [PATCH] Update OS.lua --- OS.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OS.lua b/OS.lua index 69e102f4..8a633011 100644 --- a/OS.lua +++ b/OS.lua @@ -2,7 +2,7 @@ ---------------------------------------- System initialization ---------------------------------------- -- Obtaining boot filesystem component proxy -local bootFilesystemProxy = component.proxy(component.proxy(component.list("eeprom")()).getData()) +local bootFilesystemProxy = component.proxy(component.invoke(component.list("eeprom")(), "getData")) -- Executes file from boot HDD during OS initialization (will be overriden in filesystem library later) function dofile(path)