summaryrefslogtreecommitdiffstats
path: root/platform/macos/SCsub
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-11-11 11:27:42 -0600
committerThaddeus Crews <repiteo@outlook.com>2024-11-11 11:27:42 -0600
commitf2136384e48cc64ed09b0a47fa629c0f21566f2c (patch)
tree6bb743fbdd2033daf668452cda9c9652d1eb6e36 /platform/macos/SCsub
parent0f5f3bc9546b46b2029fc8896dc859697f1eab97 (diff)
downloadredot-engine-f2136384e48cc64ed09b0a47fa629c0f21566f2c.tar.gz
CI: Update `ruff` & `mypy` pre-commit hooks
• ruff: 0.6.6 → 0.7.3 • mypy: 1.11.2 → 1.13.0
Diffstat (limited to 'platform/macos/SCsub')
-rw-r--r--platform/macos/SCsub4
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)