0

我正在尝试预编译我的 Rails 应用程序,但遇到了这个我不知道如何处理的奇怪错误?

rake 资产:预编译 --trace

** Invoke assets:precompile:all (first_time)
** Execute assets:precompile:all
** Invoke assets:precompile:primary (first_time)
** Invoke assets:environment (first_time)
** Execute assets:environment
** Invoke environment (first_time)
** Execute environment
** Invoke tmp:cache:clear (first_time)
** Execute tmp:cache:clear
** Execute assets:precompile:primary
rake aborted!
Permission denied - /123
/Users/philip/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/fileutils.rb:247:in `mkdir'
4

1 回答 1

1

您正在创建/123/可能是受保护目录的应用程序。你真的应该在你的主文件夹中创建你的应用程序。

但是,如果您想强制,/123那么您可以运行sudo rake assets:precompile并且它会起作用。

于 2012-11-08T18:29:47.780 回答