From cb41911b8cb0f699649f55b3886c045e7d78eb8c Mon Sep 17 00:00:00 2001 From: HOLZSCHUCH Nicolas Date: Sat, 23 Mar 2024 15:10:29 +0100 Subject: [PATCH] Attempt to compute the checksums --- xcfs/Sources/build/main.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xcfs/Sources/build/main.swift b/xcfs/Sources/build/main.swift index f90bc3a9..ecd7e6b8 100644 --- a/xcfs/Sources/build/main.swift +++ b/xcfs/Sources/build/main.swift @@ -45,8 +45,8 @@ for scheme in schemes { try cd(".build") { let zip = "\(scheme).xcframework.zip" try sh("zip --symlinks -r \(zip) \(scheme).xcframework") - // let chksum = try sha(path: zip) - // checksums.append([zip, chksum]) + let chksum = try sha(path: zip) + checksums.append([zip, chksum]) } }