From af286f7e6ff3709f4be8295cf7b4f255e9f896ef Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 28 Mar 2025 14:00:14 -0400 Subject: [PATCH] Remove GLOB_TILDE_CHECK for compatiblity --- src/stdlib/paths.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stdlib/paths.c b/src/stdlib/paths.c index 7a4df18..cf0eb04 100644 --- a/src/stdlib/paths.c +++ b/src/stdlib/paths.c @@ -694,7 +694,7 @@ public OptionalClosure_t Path$by_line(Path_t path) public Array_t Path$glob(Path_t path) { glob_t glob_result; - int status = glob(Path$as_c_string(path), GLOB_BRACE | GLOB_TILDE | GLOB_TILDE_CHECK, NULL, &glob_result); + int status = glob(Path$as_c_string(path), GLOB_BRACE | GLOB_TILDE, NULL, &glob_result); if (status != 0 && status != GLOB_NOMATCH) fail("Failed to perform globbing");