Skip to content

Commit

Permalink
Linux and macOS export template fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Trey2k committed Oct 11, 2023
1 parent 0d87833 commit 0239432
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ jobs:
mv scripts/godot/bin/godot.linuxbsd.template_release.x86_64.luaAPI scripts/godot/templates/linux_release.x86_64 || true
mv scripts/godot/bin/godot.linuxbsd.template_debug.x86_64.luaAPI scripts/godot/templates/linux_debug.x86_64 || true
mv scripts/godot/bin/godot.linuxbsd.template_release.x86_32.luaAPI scripts/godot/templates/linux_release.x32_64 || true
mv scripts/godot/bin/godot.linuxbsd.template_release.x86_32.luaAPI scripts/godot/templates/linux_release.x86_32 || true
mv scripts/godot/bin/godot.linuxbsd.template_debug.x86_32.luaAPI scripts/godot/templates/linux_debug.x86_32 || true
mv scripts/godot/bin/godot.linuxbsd.template_release.x86_64.luaAPI.mono scripts/godot/templates/linux_release.x86_64 || true
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/macos-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@ jobs:
strip bin/godot.*
cp -r misc/dist/macos_template.app macos_template.app
mkdir macos_template.app/Contents/MacOS
cp bin/godot.macos.template_debug.universal.luaAPI macos_template.app/Contents/MacOS/godot_macos_debug.universal.luaAPI
cp bin/godot.macos.template_release.universal.luaAPI macos_template.app/Contents/MacOS/godot_macos_release.universal.luaAPI
chmod +x macos_template.app/Contents/MacOS/godot_macos_debug.universal.luaAPI
chmod +x macos_template.app/Contents/MacOS/godot_macos_release.universal.luaAPI
cp bin/godot.macos.template_debug.universal.luaAPI macos_template.app/Contents/MacOS/godot_macos_debug.universal
cp bin/godot.macos.template_release.universal.luaAPI macos_template.app/Contents/MacOS/godot_macos_release.universal
chmod +x macos_template.app/Contents/MacOS/godot_macos_debug.universal
chmod +x macos_template.app/Contents/MacOS/godot_macos_release.universal
zip -r macos.zip macos_template.app
rm -rf bin/*
mkdir bin/templates
Expand All @@ -143,10 +143,10 @@ jobs:
strip bin/godot.*
cp -r misc/dist/macos_template.app macos_template.app
mkdir macos_template.app/Contents/MacOS
cp bin/godot.macos.template_debug.universal.luaAPI macos_template.app/Contents/MacOS/godot_macos_debug.universal.luaAPI
cp bin/godot.macos.template_release.universal.luaAPI macos_template.app/Contents/MacOS/godot_macos_release.universal.luaAPI
chmod +x macos_template.app/Contents/MacOS/godot_macos_debug.universal.luaAPI
chmod +x macos_template.app/Contents/MacOS/godot_macos_release.universal.luaAPI
cp bin/godot.macos.template_debug.universal.luaAPI macos_template.app/Contents/MacOS/godot_macos_debug.universal
cp bin/godot.macos.template_release.universal.luaAPI macos_template.app/Contents/MacOS/godot_macos_release.universal
chmod +x macos_template.app/Contents/MacOS/godot_macos_debug.universal
chmod +x macos_template.app/Contents/MacOS/godot_macos_release.universal
zip -r macos.zip macos_template.app
rm -rf bin/*
mkdir bin/templates
Expand Down

0 comments on commit 0239432

Please sign in to comment.