Rails app on percise32 vagrant box - assets get "text file busy" error (Errno::ETXTBSY) Rails app on percise32 vagrant box - assets get "text file busy" error (Errno::ETXTBSY) windows windows

Rails app on percise32 vagrant box - assets get "text file busy" error (Errno::ETXTBSY)


Looks like the gem for Sass recently updated (like yesterday or today)Go to the Gemfile and set the sass version to 3.2.10, then bundle update

gem 'sass', '3.2.10' # 3.2.11 broke the app


Solution of user2840051 work ..You need to uninstall sass

gem uninstall sass

Choose version to uninstall

Modify your Gemfile with:

gem 'sass', '3.2.10'

And finally run:

bundle update sass


I got the same problem, after sass was upgraded to 3.2.12. My solution was to move sass cache out of synced folder to a proper linux filesystem:

options[:cache_location] = "/tmp/sass-cache"