Commit 0c0c48d2 authored by Piet Brauer's avatar Piet Brauer

Added more detailed output to lib create

parent 4e7b0c9e
...@@ -7,7 +7,7 @@ GIT ...@@ -7,7 +7,7 @@ GIT
GIT GIT
remote: https://github.com/CocoaPods/Core.git remote: https://github.com/CocoaPods/Core.git
revision: 57e0ae3c4be6c9198e4333fc67eb08b5f7f369d6 revision: 5736f3cfbebe805c04e67a53729b9fa098ea8f9d
branch: master branch: master
specs: specs:
cocoapods-core (0.31.1) cocoapods-core (0.31.1)
......
...@@ -54,7 +54,7 @@ module Pod ...@@ -54,7 +54,7 @@ module Pod
# @return [void] # @return [void]
# #
def clone_template def clone_template
UI.section("Creating `#{@name}` Pod") do UI.section("Cloning `#{template_repo_url}` into `#{@name}`.") do
git!"clone '#{template_repo_url}' #{@name}" git!"clone '#{template_repo_url}' #{@name}"
end end
end end
...@@ -64,7 +64,7 @@ module Pod ...@@ -64,7 +64,7 @@ module Pod
# @return [void] # @return [void]
# #
def configure_template def configure_template
UI.section("Configuring template") do UI.section("Configuring #{@name} template.") do
Dir.chdir(@name) do Dir.chdir(@name) do
if File.exists? "configure" if File.exists? "configure"
system "./configure #{@name}" system "./configure #{@name}"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment