From fc0dd0babf044ec10dc92e2b407a978723c26d01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= <karel.koci@nic.cz> Date: Tue, 4 Aug 2020 11:06:07 +0200 Subject: [PATCH] lists/bootstrap: fix invalid name of variable Variable was renamed but not in this specific instace. --- lists/bootstrap.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lists/bootstrap.lua b/lists/bootstrap.lua index bebf98c8d..29ebc63a5 100644 --- a/lists/bootstrap.lua +++ b/lists/bootstrap.lua @@ -57,7 +57,7 @@ end -- Include contract if specified local env_contract = os.getenv('CONTRACT') if env_contract and env_contract ~= "" then - Script('contracts/' .. contract .. '.lua') + Script('contracts/' .. env_contract .. '.lua') end local env_testkey = os.getenv('TESTKEY') -- GitLab