diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-03-24 17:38:55 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-03-24 17:38:55 -0400 |
| commit | d4bbf6dadf0d650c822853ea6e079d776d016a9b (patch) | |
| tree | 1c2b895922d76056353bc6b0011d12110edb9dbf /src/tomo.c | |
| parent | 47e8bc85000b90121e658f5a236e41aaf27ab038 (diff) | |
Tweak .build/ dir settings
Diffstat (limited to 'src/tomo.c')
| -rw-r--r-- | src/tomo.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); } |
