Skip to content

Commit

Permalink
[Build] Clarify BuildPlan.Error.missingLinuxMain (#1920)
Browse files Browse the repository at this point in the history
* [Build] Clarify `BuildPlan.Error.missingLinuxMain`

Make it clear that LinuxMain.swift must be at the top level.
[SR-8646] BuildPlan.Error.missingLinuxMain description rephrasing

* [Build] Reclarify `BuildPlan.Error.missingLinuxMain`

Make it clear that LinuxMain.swift must be in the Tests directory, rather than just an arbitrary "top level".
[SR-8646] BuildPlan.Error.missingLinuxMain description rephrasing
  • Loading branch information
matthewseaman authored and aciidgh committed Jan 3, 2019
1 parent d73fbdf commit a6f3c28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Build/BuildPlan.swift
Expand Up @@ -788,7 +788,7 @@ public class BuildPlan {
public var description: String {
switch self {
case .missingLinuxMain:
return "missing LinuxMain.swift file"
return "missing LinuxMain.swift file in the Tests directory"
case .noBuildableTarget:
return "the package does not contain a buildable target"
}
Expand Down

0 comments on commit a6f3c28

Please sign in to comment.