diff --git a/Sources/Executable/CLI/Commands/CreateCommand.swift b/Sources/Executable/CLI/Commands/CreateCommand.swift index f15cca4..1a5899e 100644 --- a/Sources/Executable/CLI/Commands/CreateCommand.swift +++ b/Sources/Executable/CLI/Commands/CreateCommand.swift @@ -20,6 +20,7 @@ extension Colibri { mutating func run() async throws { let fileService = FileService() + let copyFiles = CopyFilesTask(fileService: fileService) let createFolders = CreateFoldersTask(fileService: fileService) let createRootFolder = CreateRootFolderTask(fileService: fileService) @@ -29,6 +30,7 @@ extension Colibri { ) try await createFolders(at: rootFolder) + try await copyFiles(to: rootFolder) } }