Skip to content
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

Change --derivedData -> --derived_data #192

Merged
merged 1 commit into from
Nov 8, 2023
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
6 changes: 3 additions & 3 deletions Sources/XCLogParser/loglocation/LogError.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ extension LogError: CustomStringConvertible {
switch self {
case .noDerivedDataFound:
return "We couldn't find the derivedData directory. " +
"If you use a custom derivedData directory, use the --derivedData option to pass it. "
"If you use a custom derivedData directory, use the --derived_data option to pass it. "
case .noLogFound(let dir):
return "We couldn't find a log in the directory \(dir). " +
"If the log is in a custom derivedData dir, use the --derivedData option. " +
"If the log is in a custom derivedData dir, use the --derived_data option. " +
"You can also pass the full path to the xcactivity log with the --file option"
case .xcodeBuildError(let error):
return error
Expand All @@ -52,7 +52,7 @@ extension LogError: CustomStringConvertible {
return "\(path) is not a valid xcactivitylog file"
case .noLogManifestFound(let path):
return "We couldn't find a logManifest in the path \(path). " +
"If the LogManifest is in a custom derivedData directory, use the --derivedData option."
"If the LogManifest is in a custom derivedData directory, use the --derived_data option."
case .invalidLogManifest(let path):
return "\(path) is not a valid LogManifest file"
}
Expand Down