Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Sources/TSCBasic/FileSystem.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1162,10 +1162,10 @@ public final class RerootedFileSystemView: FileSystem {
// `underlyingFileSystem` is required to be `Sendable`.
extension RerootedFileSystemView: @unchecked Sendable {}

private var _localFileSystem: any FileSystem = LocalFileSystem()
private var _localFileSystem: FileSystem = LocalFileSystem()

/// Public access to the local FS proxy.
public var localFileSystem: any FileSystem {
public var localFileSystem: FileSystem {
get {
return _localFileSystem
}
Expand Down