File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -182,6 +182,10 @@ extension FileSystemError: CustomStringConvertible {
182
182
return " unknown system error "
183
183
case . alreadyExistsAtDestination:
184
184
return " already exists in file system "
185
+ case . couldNotChangeDirectory:
186
+ return " could not change directory "
187
+ case . mismatchedByteCount( expected: let expected, actual: let actual) :
188
+ return " mismatched byte count, expected \( expected) , got \( actual) "
185
189
}
186
190
}
187
191
@@ -202,6 +206,10 @@ extension FileSystemError: CustomStringConvertible {
202
206
return " unknown system error while operating on \( path) "
203
207
case . alreadyExistsAtDestination:
204
208
return " \( path) already exists in file system "
209
+ case . couldNotChangeDirectory:
210
+ return " could not change directory to \( path) "
211
+ case . mismatchedByteCount( expected: let expected, actual: let actual) :
212
+ return " mismatched byte count, expected \( expected) , got \( actual) "
205
213
}
206
214
}
207
215
}
You can’t perform that action at this time.
0 commit comments