Skip to content

Commit 189ab8d

Browse files
committed
Format code
1 parent 7e225f5 commit 189ab8d

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

Sources/Swiftly/Init.swift

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -67,46 +67,46 @@ struct Init: SwiftlyCommand {
6767
// Give the user the prompt and the choice to abort at this point.
6868
if !assumeYes {
6969
var msg = """
70-
Welcome to swiftly, the Swift toolchain manager for Linux and macOS!
70+
Welcome to swiftly, the Swift toolchain manager for Linux and macOS!
7171
72-
Please read the following information carefully before proceeding with the installation. If you
73-
wish to customize the steps performed during the installation process, refer to 'swiftly init -h'
74-
for configuration options.
72+
Please read the following information carefully before proceeding with the installation. If you
73+
wish to customize the steps performed during the installation process, refer to 'swiftly init -h'
74+
for configuration options.
7575
76-
Swiftly installs files into the following locations:
76+
Swiftly installs files into the following locations:
7777
78-
\(Swiftly.currentPlatform.swiftlyHomeDir.path) - Directory for configuration files
79-
\(Swiftly.currentPlatform.swiftlyBinDir.path) - Links to the binaries of the active toolchain
80-
\(Swiftly.currentPlatform.swiftlyToolchainsDir.path) - Directory hosting installed toolchains
78+
\(Swiftly.currentPlatform.swiftlyHomeDir.path) - Directory for configuration files
79+
\(Swiftly.currentPlatform.swiftlyBinDir.path) - Links to the binaries of the active toolchain
80+
\(Swiftly.currentPlatform.swiftlyToolchainsDir.path) - Directory hosting installed toolchains
8181
82-
These locations can be changed by setting the environment variables
83-
SWIFTLY_HOME_DIR and SWIFTLY_BIN_DIR before running 'swiftly init' again.
82+
These locations can be changed by setting the environment variables
83+
SWIFTLY_HOME_DIR and SWIFTLY_BIN_DIR before running 'swiftly init' again.
8484
85-
"""
85+
"""
8686
if !skipInstall {
8787
msg += """
8888
89-
Once swiftly is set up, it will install the latest available Swift toolchain. This can be
90-
suppressed with the '--skip-install' option.
91-
"""
92-
#if os(Linux)
89+
Once swiftly is set up, it will install the latest available Swift toolchain. This can be
90+
suppressed with the '--skip-install' option.
91+
"""
92+
#if os(Linux)
9393
msg += """
94-
In the process, swiftly will add swift.org
95-
GnuPG keys into your keychain to verify the integrity of the downloads.
94+
In the process, swiftly will add swift.org
95+
GnuPG keys into your keychain to verify the integrity of the downloads.
9696
97-
"""
98-
#else
97+
"""
98+
#else
9999
msg += "\n"
100-
#endif
100+
#endif
101101
}
102102
if !noModifyProfile {
103103
msg += """
104104
105-
For your convenience, swiftly will also attempt to modify your shell's profile file to make
106-
installed items available in your environment upon login. This can be suppressed with the
107-
'--no-modify-profile' option.
105+
For your convenience, swiftly will also attempt to modify your shell's profile file to make
106+
installed items available in your environment upon login. This can be suppressed with the
107+
'--no-modify-profile' option.
108108
109-
"""
109+
"""
110110
}
111111

112112
SwiftlyCore.print(msg)

0 commit comments

Comments
 (0)