Merge pull request #1710 from tricknotes/exit-with-1

Exit with error code on `init` command failed
move_new_block
Thomas Reynolds 2015-12-30 15:59:27 -08:00
commit da1f3f7af6
1 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ module Middleman::Cli
rescue ::OpenURI::HTTPError
say "Template `#{options[:template]}` not found in Middleman Directory."
say 'Did you mean to use a full `user/repo` path?'
exit
exit 1
end
else
repo_name, repo_branch = options[:template].split('#')
@ -55,7 +55,7 @@ module Middleman::Cli
unless File.directory?(dir)
say 'Git clone failed, maybe the url is invalid or you don\'t have the permissions?', :red
exit
exit 1
end
inside(target) do