File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Sources/hostmgr/commands/vm Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments