Skip to content

Commit 5424eb7

Browse files
committed
Fix SwiftLint error
1 parent 2e1260c commit 5424eb7

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Sources/hostmgr/commands/vm/VMStart.swift

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,17 @@ struct VMStartCommand: AsyncParsableCommand {
8585

8686
if self.withGitMirrors {
8787
if try FileManager.default.directoryExists(at: Paths.gitMirrorStorageDirectory) {
88-
paths.append(LaunchConfiguration.SharedPath(source: Paths.gitMirrorStorageDirectory, readOnly: true))
88+
paths.append(
89+
LaunchConfiguration.SharedPath(source: Paths.gitMirrorStorageDirectory, readOnly: true)
90+
)
8991
}
9092
}
9193

9294
if self.withCommonCredentials {
9395
if try FileManager.default.directoryExists(at: Paths.commonCredentialsDirectory) {
94-
paths.append(LaunchConfiguration.SharedPath(source: Paths.commonCredentialsDirectory, readOnly: true))
96+
paths.append(
97+
LaunchConfiguration.SharedPath(source: Paths.commonCredentialsDirectory, readOnly: true)
98+
)
9599
}
96100
}
97101

0 commit comments

Comments
 (0)