Skip to content

Commit bc8cf77

Browse files
author
breandan
committed
FileUtils.cp_r has inconsistent results on Windows and Linux
1 parent d91551f commit bc8cf77

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ WORKDIR /usr/src/app
3131
EXPOSE 4000
3232

3333
CMD \
34-
rake bootstrap && \
34+
rake bootstrap --trace && \
3535
rake preview

Rakefile

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
Rake.add_rakelib 'sdkdocs-template/rakelib'
22

3+
begin
34
FileUtils.mkdir_p %w( _includes/code_samples )
4-
FileUtils.cp_r 'code_samples', '_includes', :verbose => true
5+
FileUtils.cp_r 'code_samples', '_includes', :verbose => true, :remove_destination => true
6+
rescue
7+
`yes | cp -rf code_samples _includes`
8+
end
59

610
CONFIG = {
711
:source_dir => __dir__,

0 commit comments

Comments
 (0)