fix update-versions (#18137)

This commit is contained in:
Gary Verhaegen 2024-01-11 17:16:20 +01:00 committed by GitHub
parent 8cbb7f79e7
commit acaf8baad9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -95,7 +95,6 @@ data Checksums = Checksums
{ linuxHash :: Digest SHA256
, macosHash :: Digest SHA256
, windowsHash :: Digest SHA256
, testToolHash :: Digest SHA256
, damlTypesHash :: Digest SHA256
, damlLedgerHash :: Digest SHA256
, damlReactHash :: Digest SHA256
@ -126,7 +125,7 @@ getChecksums ver = do
(base16Hash : _) <- find (\line -> path == line !! 1) lines
byteHash <- (eitherToMaybe . convertFromBase Base16 . T.encodeUtf8) base16Hash
digestFromByteString @SHA256 @ByteString byteHash
[ testToolHash, damlTypesHash, damlLedgerHash, damlReactHash] <-
[ damlTypesHash, damlLedgerHash, damlReactHash] <-
forConcurrently
[ tsLib "types"
, tsLib "ledger"