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

# Conflicts:
#	Sources/Executable/Commands/Create.swift
This commit is contained in:
Javier Cicchelli 2025-01-12 03:07:07 +01:00
commit 75978f75b3

View File

@ -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)
}