CI: disable self-test on macos-13

This commit is contained in:
Markus F.X.J. Oberhumer
2023-06-10 11:02:19 +02:00
parent 75e87a58da
commit c585774162
6 changed files with 40 additions and 6 deletions
+2 -2
View File
@@ -674,14 +674,14 @@ bool file_exists(const char *name) {
}
/* return true if we can stat it */
// memset(&st, 0, sizeof(st));
// mem_clear(&st);
r = stat(name, &st);
if (r != -1)
return true;
/* return true if we can lstat it */
#if (HAVE_LSTAT)
// memset(&st, 0, sizeof(st));
// mem_clear(&st);
r = lstat(name, &st);
if (r != -1)
return true;