From b643b0b1a9948e8d788d9de71bca18b9ef41be5a Mon Sep 17 00:00:00 2001 From: gingerBill Date: Thu, 19 Feb 2026 14:05:49 +0000 Subject: [PATCH] Fix `_copy_directory_all_native` --- core/os/dir_posix_darwin.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/os/dir_posix_darwin.odin b/core/os/dir_posix_darwin.odin index e67c917b4..ddd25c1fc 100644 --- a/core/os/dir_posix_darwin.odin +++ b/core/os/dir_posix_darwin.odin @@ -3,7 +3,7 @@ package os import "core:sys/darwin" -_copy_directory_all_native :: proc(dst, src: string, dst_perm := 0o755) -> (err: Error) { +_copy_directory_all_native :: proc(dst, src: string, dst_perm := Permissions_Default) -> (err: Error) { temp_allocator := TEMP_ALLOCATOR_GUARD({}) csrc := clone_to_cstring(src, temp_allocator) or_return