Skip to content

Commit

Permalink
No need to create build directory when creating project.
Browse files Browse the repository at this point in the history
  • Loading branch information
carlolars committed Mar 27, 2018
1 parent 2d72dea commit 0399a3f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions bin/ceedling
Expand Up @@ -64,9 +64,8 @@ unless (project_found)
source_path = File.join(name, 'src')
test_path = File.join(name, 'test')
test_support_path = File.join(name, 'test/support')
build_path = File.join(name, 'build')

[source_path, test_path, test_support_path, build_path].each do |d|
[source_path, test_path, test_support_path].each do |d|
FileUtils.mkdir_p d
end

Expand Down

0 comments on commit 0399a3f

Please sign in to comment.