From d4bbf6dadf0d650c822853ea6e079d776d016a9b Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 24 Mar 2025 17:38:55 -0400 Subject: Tweak .build/ dir settings --- src/tomo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/tomo.c b/src/tomo.c index a251e3a5..2072b525 100644 --- a/src/tomo.c +++ b/src/tomo.c @@ -264,7 +264,7 @@ Text_t escape_lib_name(Text_t lib_name) Path_t build_file(Path_t path, const char *extension) { Path_t build_dir = Path$with_component(Path$parent(path), Text(".build")); - if (mkdir(Path$as_c_string(build_dir), 0777) != 0) { + if (mkdir(Path$as_c_string(build_dir), 0755) != 0) { if (errno != EEXIST) err(1, "Could not make .build directory"); } -- cgit v1.2.3