Merge branch 'feature/create-basic-project' into feature/create-project-root

# Conflicts:
#	Sources/Executable/Commands/Create.swift
This commit is contained in:
2025-01-12 03:07:07 +01:00
+4 -2
View File
@@ -22,8 +22,10 @@ extension Colibri {
let fileService = FileService() let fileService = FileService()
let createRootFolder = CreateRootFolderTask(fileService: fileService) let createRootFolder = CreateRootFolderTask(fileService: fileService)
let rootFolder = try await createRootFolder(name: options.name, let rootFolder = try await createRootFolder(
at: options.locationURL) name: options.name,
at: options.locationURL
)
print(rootFolder) print(rootFolder)
} }