我正在尝试设置rails应用模板并在sample.rb模板文件中包含此代码:
run "bundle install"
copy_file "/Users/amiterandole/Desktop/current/rails/templates/guard/Guardfile", "."
捆绑安装运行正常但复制命令失败并显示以下错误:
/usr/local/rvm/gems/ruby-1.9.3-p194/gems/thor-0.16.0/lib/thor/actions/create_file.rb:47:in `binread': Is a directory - /Users/amiterandole/Desktop/current/rails/templates/myapp (Errno::EISDIR)
我无法理解这个错误以及如何解决它。我究竟做错了什么?请帮忙。
答案 0 :(得分:1)
尝试指定包含文件名的目标文件路径。
copy_file "/Users/amiterandole/Desktop/current/rails/templates/guard/Guardfile", "my_destination_path/Guardfile"