diff --git a/misc/osx/create_editor_app.sh b/misc/osx/create_editor_app.sh index ce94f2c7a..66c12ee47 100755 --- a/misc/osx/create_editor_app.sh +++ b/misc/osx/create_editor_app.sh @@ -1,12 +1,11 @@ cd ../../bin/ -rm -Rf Godot.app -rm -f Godot.app.zip +rm -Rf Pandemonium.app +rm -f Pandemonium.app.zip -cp -r ../misc/dist/osx_tools.app Godot.app -mkdir -p Godot.app/Contents/MacOS -cp pandemonium.osx.opt.tools.universal Godot.app/Contents/MacOS/Godot -chmod +x Godot.app/Contents/MacOS/Godot +cp -r ../misc/dist/osx_tools.app Pandemonium.app +mkdir -p Pandemonium.app/Contents/MacOS +cp pandemonium.osx.opt.tools.universal Pandemonium.app/Contents/MacOS/Pandemonium +chmod +x Pandemonium.app/Contents/MacOS/Pandemonium -zip -q -r Godot.app.zip Godot.app/* -cd ../../tools/osx/ +zip -q -r Pandemonium.app.zip Pandemonium.app/* diff --git a/misc/osx/create_export_templates.sh b/misc/osx/create_export_templates.sh index 2ffb3b2b5..28be899c8 100755 --- a/misc/osx/create_export_templates.sh +++ b/misc/osx/create_export_templates.sh @@ -8,5 +8,3 @@ cp pandemonium.osx.opt.universal osx_template.app/Contents/MacOS/pandemonium_osx cp pandemonium.osx.opt.debug.universal osx_template.app/Contents/MacOS/pandemonium_osx_debug.64 chmod +x osx_template.app/Contents/MacOS/pandemonium_osx* zip -q -9 -r osx.zip osx_template.app - -cd ../../tools/osx