Next time you run assets:precompile it will precompile all assets from the beginning.
How to fix:
change line 82 of lib/turbo-sprockets/tasks/assets.rake
from touch #{full_path}
to touch '#{full_path}'
so that the whitespace in path is not treated as arguments delimeter.
in 0.3.3 you changed the command to update mtimes in
lib/turbo-sprockets/tasks/assets.rake
problem is the new command breaks if filename contains whitespace.
How to reproduce: add asset file with name
ui-icons_222222_256x240 (copy)
runbundle exec rake assets:precompile --trace
you will get:Next time you run assets:precompile it will precompile all assets from the beginning.
How to fix: change line 82 of lib/turbo-sprockets/tasks/assets.rake from
touch #{full_path}
totouch '#{full_path}'
so that the whitespace in path is not treated as arguments delimeter.