Exit with error code on `init` command failed

move_new_block
Ryunosuke SATO 2015-12-23 23:29:16 +09:00
parent 3b596d5e3e
commit e56227c945
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