Skip to content

[6.1][Android] Get this repo building again #5151

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Dec 19, 2024
Prev Previous commit
Next Next commit
Update Sources/Foundation/FileManager+POSIX.swift
  • Loading branch information
compnerd authored and finagolfin committed Dec 17, 2024
commit 28cfb5f22c298be1e41499773dabfb01d35eb6fb
2 changes: 1 addition & 1 deletion Sources/Foundation/FileManager+POSIX.swift
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ extension FileManager {
case FTS_D:
let (showFile, skipDescendants) = match(filename: filename, to: _options, isDir: true)
if skipDescendants {
fts_set(stream, _current!, FTS_SKIP)
fts_set(stream, current, FTS_SKIP)
}
if showFile {
return URL(fileURLWithPath: filename, isDirectory: true)
Expand Down