Windows 上的 Rake cp 权限被拒绝
这是耙子文件。
task :default => :release
task :release do
target = 'releases/' + Time.new.strftime('%Y%m%d')
mkdir_p target
cp Dir["web"], target
end
我收到“权限被拒绝 - 网络”。 我必须做什么才能赋予 rake 在 Windows 中运行时拥有的相同权限。
Here's the rake file.
task :default => :release
task :release do
target = 'releases/' + Time.new.strftime('%Y%m%d')
mkdir_p target
cp Dir["web"], target
end
I get "permission denied - web".
what do I have to do to give rake the same rights I have when it runs, in windows.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我遇到了这个问题,就像目标是只读的一样简单。在这种情况下,
web
可能不存在,或者可能不可读。我不是 rake 方面的专家,但是
Dir
在哪里声明的?I had this problem, as simple as the target was readonly. In this case
web
might not exist, or might not be readable.I'm no expert in rake, but where is
Dir
declared?使用 sh 怎么样?
What about using sh?