We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19627df commit 9035221Copy full SHA for 9035221
Sources/PublicModules/PADProjectBuilder/ProjectSetup/Git.swift
@@ -44,7 +44,9 @@ internal struct Git {
44
func clone(_ repository: String, at branchOrTag: String, targetDirectoryPath: String) throws {
45
logger?.log("🐱 Cloning \(repository) @ \(branchOrTag) into \(targetDirectoryPath)", from: String(describing: Self.self))
46
let command = "git clone -b \(branchOrTag) \(repository) \(targetDirectoryPath)"
47
- shell.execute(command)
+
48
+ let shellOutput = shell.execute(command)
49
+ logger?.debug(shellOutput, from: String(describing: Self.self))
50
51
let directoryContents = try fileHandler.contentsOfDirectory(atPath: targetDirectoryPath)
52
guard !directoryContents.isEmpty else {
0 commit comments