Skip to content

Commit 32178e1

Browse files
committed
Fix server installation
1 parent 203d736 commit 32178e1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

taminomara-amm-ammcore/_templates/bootstrap/bootstrap.lua

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ local function loader(pathCandidates)
2121
else
2222
return nil
2323
end
24-
return moduleCode[realPath], "gh://" .. realPath
24+
if moduleCode[realPath] then
25+
return moduleCode[realPath], "gh://" .. realPath
26+
end
2527
end
2628

2729
return nil, nil

taminomara-amm-ammcore/_templates/bootstrap/eeprom.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ local config = {
99
-- prog = "ammtest.bin.main", -- to run tests
1010

1111
--- Where to find the program: either `drive` or `net`.
12-
target = [[{ target }]]
12+
target = [[{ target }]],
1313
--[[{ configExtras }]] }
1414

1515
-- Implementation

0 commit comments

Comments
 (0)