2

我已经阅读了其他类似问题的问题并尝试了他们的修复无济于事

我有一个 3.2.14 Rails 应用程序,当我在一个 CSS 文件中进行更改然后将代码推送到 heroku 时,特定的 CSS 更改不会更新。我已经尝试过:

-Verified that my git status is clean.
-- Tested in New Google Incognito Window for cache check
-- heroku restart
-- rake assets:precompile before deploying
-- Followed these instructions to specifically precompile in production environment
https://devcenter.heroku.com/articles/rails-asset-pipeline
-- Ran: 
bundle exec rake tmp:clear
bundle exec rake assets:clean RAILS_ENV=production
bundle exec rake assets:precompile RAILS_ENV=production 

谢谢阅读。任何指导将不胜感激。

4

1 回答 1

2

可能你现在已经解决了你的问题。但是我相信按以下顺序尝试这些命令会起作用。

$bundle exec rake assets:precompile
$git add . 
$git commit -m "msg" 
$git push heroku master
于 2014-08-12T05:27:18.583 回答