diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-12 09:27:34 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-12 09:27:34 -0600 |
commit | d4a5c339eaebe47ae17654cb9825b932abf9519a (patch) | |
tree | 11e6b338e04c0d8cfd153a679e3cfb6d57a7e696 /platform | |
parent | 0ad3181d1424551113625dc0d9fd93cbf9a4ae72 (diff) | |
parent | f2136384e48cc64ed09b0a47fa629c0f21566f2c (diff) | |
download | redot-engine-d4a5c339eaebe47ae17654cb9825b932abf9519a.tar.gz |
Merge pull request #99080 from Repiteo/ci/bump-ruff-mypy
CI: Update `ruff` & `mypy` pre-commit hooks
Diffstat (limited to 'platform')
-rw-r--r-- | platform/macos/SCsub | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/platform/macos/SCsub b/platform/macos/SCsub index 3924e79fb6..598444ae24 100644 --- a/platform/macos/SCsub +++ b/platform/macos/SCsub @@ -27,7 +27,9 @@ def generate_bundle(target, source, env): target_bin = lipo(bin_dir + "/" + prefix, env.extra_suffix + env.module_version_string) # Assemble .app bundle and update version info. - app_dir = Dir("#bin/" + (prefix + env.extra_suffix + env.module_version_string).replace(".", "_") + ".app").abspath + app_dir = Dir( + "#bin/" + (prefix + env.extra_suffix + env.module_version_string).replace(".", "_") + ".app" + ).abspath templ = Dir("#misc/dist/macos_tools.app").abspath if os.path.exists(app_dir): shutil.rmtree(app_dir) |