File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -549,7 +549,7 @@ runTarball common (Just sock) tarFile keepGoing runOnly compareDetails = do
549
549
-- unpack all directories "rpc_<something>" containing "*.json" files
550
550
(dir, " " ) -- directory
551
551
| Tar. Directory <- Tar. entryContent entry -> do
552
- createDirectoryIfMissing False dir -- create rpc dir so we can unpack files there
552
+ createDirectoryIfMissing True dir -- create rpc dir so we can unpack files there
553
553
acc -- no additional file to return
554
554
| otherwise ->
555
555
acc -- skip other directories and top-level files
@@ -560,7 +560,7 @@ runTarball common (Just sock) tarFile keepGoing runOnly compareDetails = do
560
560
-- unpack json files into tmp directory
561
561
let newPath = dir </> file
562
562
-- current tarballs do not have dir entries, create dir here
563
- createDirectoryIfMissing False $ tmpDir </> dir
563
+ createDirectoryIfMissing True $ tmpDir </> dir
564
564
BS. writeFile (tmpDir </> newPath) bs
565
565
(newPath : ) <$> acc
566
566
| otherwise ->
You can’t perform that action at this time.
0 commit comments