Skip to content

Commit 5c6a86c

Browse files
authored
Merge branch 'master' into add-IDEActivityLogActionMessage-support
2 parents d87f70a + ab34d14 commit 5c6a86c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/XCLogParser/loglocation/LogError.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ extension LogError: CustomStringConvertible {
3939
switch self {
4040
case .noDerivedDataFound:
4141
return "We couldn't find the derivedData directory. " +
42-
"If you use a custom derivedData directory, use the --derivedData option to pass it. "
42+
"If you use a custom derivedData directory, use the --derived_data option to pass it. "
4343
case .noLogFound(let dir):
4444
return "We couldn't find a log in the directory \(dir). " +
45-
"If the log is in a custom derivedData dir, use the --derivedData option. " +
45+
"If the log is in a custom derivedData dir, use the --derived_data option. " +
4646
"You can also pass the full path to the xcactivity log with the --file option"
4747
case .xcodeBuildError(let error):
4848
return error
@@ -52,7 +52,7 @@ extension LogError: CustomStringConvertible {
5252
return "\(path) is not a valid xcactivitylog file"
5353
case .noLogManifestFound(let path):
5454
return "We couldn't find a logManifest in the path \(path). " +
55-
"If the LogManifest is in a custom derivedData directory, use the --derivedData option."
55+
"If the LogManifest is in a custom derivedData directory, use the --derived_data option."
5656
case .invalidLogManifest(let path):
5757
return "\(path) is not a valid LogManifest file"
5858
}

0 commit comments

Comments
 (0)