Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Diemand <codieplusplus@apax.net>
  • Loading branch information
CodiePP committed Sep 14, 2020
1 parent b070e9d commit 883c5bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cardano-rt-view/src/Cardano/Benchmarking/RTView/Config.hs
Expand Up @@ -343,7 +343,7 @@ askAboutLocationForPipes nodesNumber = do
prepname :: FilePath -> Text -> FilePath
#if defined(mingw32_HOST_OS)
mkdir _ = pure ()
prepname d n = "\"" ++ (T.unpack $ T.replace "\\" "\\\\" (d <> "_" <> n)) ++ "\""
prepname d n = "\"" ++ (T.unpack $ T.replace "\\" "\\\\" (T.pack d <> "_" <> n)) ++ "\""
#else
mkdir = createDirectoryIfMissing True
prepname d n = d </> T.unpack n
Expand Down

0 comments on commit 883c5bb

Please sign in to comment.