Skip to content

Commit 63bcee1

Browse files
committed
Fix smoke test: Remove non-existent LuaMenu, add LuaRules/LuaHandler
SpringBoard-Core doesn't have a LuaMenu directory. Updated package preparation: - Removed: LuaMenu (doesn't exist) - Added: LuaRules (required) - Added: LuaHandler (required) - Made optional: Gamedata, model, springboard (won't fail if missing) This fixes: cp: cannot stat '../LuaMenu': No such file or directory
1 parent c82bf17 commit 63bcee1

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/smoke-test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,15 @@ jobs:
6363
cp -r ../triggers "SpringBoard Core.sdd/"
6464
cp -r ../libs_sb "SpringBoard Core.sdd/"
6565
cp -r ../LuaUI "SpringBoard Core.sdd/"
66-
cp -r ../LuaMenu "SpringBoard Core.sdd/"
66+
cp -r ../LuaRules "SpringBoard Core.sdd/"
67+
cp -r ../LuaHandler "SpringBoard Core.sdd/"
6768
cp ../modinfo.lua "SpringBoard Core.sdd/"
6869
70+
# Copy optional directories if they exist
71+
[ -d ../Gamedata ] && cp -r ../Gamedata "SpringBoard Core.sdd/" || true
72+
[ -d ../model ] && cp -r ../model "SpringBoard Core.sdd/" || true
73+
[ -d ../springboard ] && cp -r ../springboard "SpringBoard Core.sdd/" || true
74+
6975
cd ..
7076
7177
- name: Download test map

0 commit comments

Comments
 (0)