diff --git a/Sources/Executable/Commands/Create.swift b/Sources/Executable/Commands/Create.swift index 83787f1..a8d4373 100644 --- a/Sources/Executable/Commands/Create.swift +++ b/Sources/Executable/Commands/Create.swift @@ -22,8 +22,10 @@ extension Colibri { let fileService = FileService() let createRootFolder = CreateRootFolderTask(fileService: fileService) - let rootFolder = try await createRootFolder(name: options.name, - at: options.locationURL) + let rootFolder = try await createRootFolder( + name: options.name, + at: options.locationURL + ) print(rootFolder) }