From 8d1f5c74db85a944f94afbaf90f643ac84a20693 Mon Sep 17 00:00:00 2001 From: Dennis Ploeger Date: Thu, 2 Dec 2021 22:42:07 +0100 Subject: [PATCH] Fix incorrect export template path in Compiling for macOS (#5425) --- development/compiling/compiling_for_macos.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/development/compiling/compiling_for_macos.rst b/development/compiling/compiling_for_macos.rst index 0863adcae..0daa5f652 100644 --- a/development/compiling/compiling_for_macos.rst +++ b/development/compiling/compiling_for_macos.rst @@ -139,7 +139,7 @@ with the following commands (assuming a universal build, otherwise replace the 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 Godot.app/Contents/MacOS/godot_osx* + chmod +x osx_template.app/Contents/MacOS/godot_osx* .. note::