Skip to content

Commit

Permalink
Avoid extra method call
Browse files Browse the repository at this point in the history
  • Loading branch information
ntkme committed Sep 13, 2022
1 parent 2951b26 commit b08a6fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/sass/Rakefile
Expand Up @@ -78,7 +78,7 @@ module FileUtils
while entries.hasMoreElements
entry = entries.nextElement
name = entry.getName
path = dest_path.resolve(entry.getName).normalize
path = dest_path.resolve(name).normalize
raise unless path.startsWith(dest_path)

Rake.rake_output_message " inflating: #{name}" if Rake::FileUtilsExt.verbose_flag
Expand Down

0 comments on commit b08a6fd

Please sign in to comment.