We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1bda13 commit 0c168c7Copy full SHA for 0c168c7
src/Stack/Build/Execute.hs
@@ -1935,7 +1935,7 @@ singleTest topts testsToRun ac ee task installedMap = do
1935
-- Add a random suffix to avoid conflicts between parallel jobs
1936
-- See https://github.com/commercialhaskell/stack/issues/5024
1937
randomInt <- liftIO (randomIO :: IO Int)
1938
- let randomSuffix = "." <> (show $ abs randomInt)
+ let randomSuffix = "." <> show (abs randomInt)
1939
fp <- toFilePath <$> addExtension randomSuffix fp'
1940
let snapDBPath = toFilePathNoTrailingSep (bcoSnapDB $ eeBaseConfigOpts ee)
1941
localDBPath = toFilePathNoTrailingSep (bcoLocalDB $ eeBaseConfigOpts ee)
0 commit comments