Skip to content

Commit

Permalink
Make asset timestamping safe to use on assets that don't exist
Browse files Browse the repository at this point in the history
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4103 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
jamis committed Mar 30, 2006
1 parent 0703149 commit ef4b8c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actionpack/lib/action_view/helpers/asset_tag_helper.rb
Expand Up @@ -160,7 +160,7 @@ def compute_public_path(source, dir, ext)

def rails_asset_id(source)
ENV["RAILS_ASSET_ID"] ||
File.stat(RAILS_ROOT + "/public/#{source}").mtime.to_i.to_s
File.mtime("#{RAILS_ROOT}/public/#{source}").to_i.to_s rescue ""
end
end
end
Expand Down

0 comments on commit ef4b8c2

Please sign in to comment.