tags:

views:

609

answers:

1

Is there a way to get ruby to do a forced copy? FileUtils.cp_r seems not to have a :force => true option.

+1  A: 

No, but it does have :remove_destination as an option, which does much the same thing.

Pesto