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 c1f3b35 commit d473a23Copy full SHA for d473a23
etc/scripts/release.hs
@@ -278,7 +278,12 @@ rules global@Global{..} args = do
278
bs <- liftIO $ do
279
_ <- tryJust (guard . isDoesNotExistError) (removeFile out)
280
S8.readFile (dropExtension out)
281
- writeFileChanged out (S8.unpack (digestToHexByteString (hash bs :: Digest SHA256)) ++ "\n")
+ writeFileChanged
282
+ out
283
+ ( S8.unpack (digestToHexByteString (hash bs :: Digest SHA256)) ++
284
+ " " ++
285
+ takeFileName (dropExtension out) ++
286
+ "\n" )
287
288
releaseBinDir </> binaryName </> stackExeFileName %> \out -> do
289
alwaysRerun
0 commit comments