Revert File.absolute_path logic

The error was introduced by commit 7b9d1da3fc.
This commit is contained in:
dearblue
2025-09-19 22:51:09 +09:00
parent 445fe9ba32
commit 5838de682b
+1 -1
View File
@@ -653,7 +653,7 @@ mrb_file_absolute_path(mrb_state *mrb, mrb_value self)
const char *path;
const char *default_dir = ".";
mrb_get_args(mrb, "z|z", &path, &default_dir);
return path_expand(mrb, path, default_dir, TRUE);
return path_expand(mrb, path, default_dir, FALSE);
}
/*