From dd12b1a2933df78c747f8e20e203b50dc80c38f1 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sat, 29 Jan 2022 18:48:20 +0100 Subject: [PATCH] Renamed the create app script. --- tools/osx/create_app.sh | 17 ----------------- tools/osx/create_editor_app.sh | 9 +++++++++ 2 files changed, 9 insertions(+), 17 deletions(-) delete mode 100755 tools/osx/create_app.sh create mode 100755 tools/osx/create_editor_app.sh diff --git a/tools/osx/create_app.sh b/tools/osx/create_app.sh deleted file mode 100755 index c57ee0bf..00000000 --- a/tools/osx/create_app.sh +++ /dev/null @@ -1,17 +0,0 @@ -rm -Rf ../../engine/bin/Godot.app -cp -r ../../engine/misc/dist/osx_tools.app ../../engine/bin/Godot.app -mkdir -p ../../engine/bin/Godot.app/Contents/MacOS -cp ../../engine/bin/godot.osx.opt.tools.universal ../../engine/bin/Godot.app/Contents/MacOS/Godot -chmod +x ../../engine/bin/Godot.app/Contents/MacOS/Godot -cd ../../engine/bin/ -zip -q -r Godot.app.zip Godot.app/* -cd ../../tools/osx/ - -#templates -#cp -r misc/dist/osx_template.app . -#mkdir -p osx_template.app/Contents/MacOS -#cp bin/godot.osx.opt.universal osx_template.app/Contents/MacOS/godot_osx_release.64 -#cp bin/godot.osx.opt.debug.universal osx_template.app/Contents/MacOS/godot_osx_debug.64 -#chmod +x osx_template.app/Contents/MacOS/godot_osx* -#zip -q -9 -r osx.zip osx_template.app - diff --git a/tools/osx/create_editor_app.sh b/tools/osx/create_editor_app.sh new file mode 100755 index 00000000..9d443385 --- /dev/null +++ b/tools/osx/create_editor_app.sh @@ -0,0 +1,9 @@ +rm -Rf ../../engine/bin/Godot.app +cp -r ../../engine/misc/dist/osx_tools.app ../../engine/bin/Godot.app +mkdir -p ../../engine/bin/Godot.app/Contents/MacOS +cp ../../engine/bin/godot.osx.opt.tools.universal ../../engine/bin/Godot.app/Contents/MacOS/Godot +chmod +x ../../engine/bin/Godot.app/Contents/MacOS/Godot + +#cd ../../engine/bin/ +#zip -q -r Godot.app.zip Godot.app/* +#cd ../../tools/osx/