Skip to content

Commit 398b5c5

Browse files
Fix viewing GitHub submissions (#2268)
(cherry picked from commit 78f7933) Co-authored-by: Kester <[email protected]>
1 parent 7992e9a commit 398b5c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/archive.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def self.sanitize_directories(files)
7171

7272
# edge case for removing "./" from pathnames
7373
if file[:pathname].include?("./")
74-
file[:pathname] = File.cleanpath(file[:pathname], rel_root = true).gsub("..", "__PARENT__")
74+
file[:pathname] = Pathname.new(file[:pathname]).cleanpath.to_s.gsub("..", "__PARENT__")
7575
end
7676

7777
if(file[:directory])

0 commit comments

Comments
 (0)