diff --git a/Scripts/Swift/iOSTemplateMaker/Sources/iOSTemplateMaker/SetUpiOSProject.swift b/Scripts/Swift/iOSTemplateMaker/Sources/iOSTemplateMaker/SetUpiOSProject.swift index 2767e4fa..bf0a8dfc 100644 --- a/Scripts/Swift/iOSTemplateMaker/Sources/iOSTemplateMaker/SetUpiOSProject.swift +++ b/Scripts/Swift/iOSTemplateMaker/Sources/iOSTemplateMaker/SetUpiOSProject.swift @@ -186,9 +186,9 @@ class SetUpIOSProject { } private func installDependencies() throws { - try safeShell("bundle install") + print(try safeShell("bundle install") ?? "") try safeShell("bundle exec arkana") - try safeShell("bundle exec pod install --repo-update") + print(try safeShell("bundle exec pod install --repo-update") ?? "") } private func removeGitkeepFromXcodeProject() throws {