File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -1164,6 +1164,10 @@ extension GitFileSystemView: @unchecked Sendable {}
1164
1164
package struct GitShellError : Error , CustomStringConvertible {
1165
1165
let result : AsyncProcessResult
1166
1166
1167
+ package init ( result: AsyncProcessResult ) {
1168
+ self . result = result
1169
+ }
1170
+
1167
1171
public var description : String {
1168
1172
let stdout = ( try ? self . result. utf8Output ( ) ) ?? " "
1169
1173
let stderr = ( try ? self . result. utf8stderrOutput ( ) ) ?? " "
Original file line number Diff line number Diff line change @@ -541,6 +541,11 @@ extension RepositoryManager {
541
541
public let fromCache : Bool
542
542
/// Indicates whether the repository was already present in the cache and updated or if a clean fetch was performed.
543
543
public let updatedCache : Bool
544
+
545
+ package init ( fromCache: Bool , updatedCache: Bool ) {
546
+ self . fromCache = fromCache
547
+ self . updatedCache = updatedCache
548
+ }
544
549
}
545
550
}
546
551
@@ -609,7 +614,7 @@ extension RepositoryManager.RepositoryHandle: CustomStringConvertible {
609
614
610
615
extension RepositorySpecifier {
611
616
// relative path where the repository should be stored
612
- internal func storagePath( ) throws -> Basics . RelativePath {
617
+ package func storagePath( ) throws -> Basics . RelativePath {
613
618
return try RelativePath ( validating: self . fileSystemIdentifier)
614
619
}
615
620
You can’t perform that action at this time.
0 commit comments