We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7992e9a commit 398b5c5Copy full SHA for 398b5c5
lib/archive.rb
@@ -71,7 +71,7 @@ def self.sanitize_directories(files)
71
72
# edge case for removing "./" from pathnames
73
if file[:pathname].include?("./")
74
- file[:pathname] = File.cleanpath(file[:pathname], rel_root = true).gsub("..", "__PARENT__")
+ file[:pathname] = Pathname.new(file[:pathname]).cleanpath.to_s.gsub("..", "__PARENT__")
75
end
76
77
if(file[:directory])
0 commit comments