cli: squib new gives informative message

Also, move the files so we we can eventually add more project templates
dev
Andy Meneely 2017-07-17 12:27:34 -04:00
parent ad5c53c8bd
commit 36dc7ce4eb
13 changed files with 2 additions and 1 deletions

View File

@ -27,7 +27,7 @@ module Squib
raise ArgumentError.new('Please specify a path.') if args.empty?
new_project_path = File.expand_path(args.join(' '), Dir.pwd)
template_path = File.expand_path('../project_template', File.dirname(__FILE__))
template_path = File.expand_path('../builtin/projects/basic', File.dirname(__FILE__))
FileUtils.mkdir_p new_project_path
if !Dir["#{new_project_path}/**/*"].empty?
@ -37,6 +37,7 @@ module Squib
FileUtils.cp_r template_path + '/.', new_project_path
end
end
puts "Created basic Squib project in #{new_project_path}."
end
end