Skip to content

Commit 760ec39

Browse files
authored
CrossCompilationDestinationsTool: fix install command help formatting (#6194)
Currently, `swift experimental-destination help` produces output that's split into multiple lines at a wrong column: ``` install Installs a given destination artifact bundle to a location discoverable by SwiftPM. If the artifact bundle is at a remote location, it's downloaded to local filesystem first. ``` By adding a backslash to the help multi-line string we leave the job of splitting this into multiple lines to the terminal renderer.
1 parent 22c2493 commit 760ec39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/CrossCompilationDestinationsTool/InstallDestination.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public struct InstallDestination: ParsableCommand {
2525
public static let configuration = CommandConfiguration(
2626
commandName: "install",
2727
abstract: """
28-
Installs a given destination artifact bundle to a location discoverable by SwiftPM. If the artifact bundle
28+
Installs a given destination artifact bundle to a location discoverable by SwiftPM. If the artifact bundle \
2929
is at a remote location, it's downloaded to local filesystem first.
3030
"""
3131
)

0 commit comments

Comments
 (0)