I created my xcframework on my Desktop called MyXCFramework.xcframework then I zipped it like Boris said in WWDC2020 about Distribute binary frameworks as Swift packages both files are on Desktop and I want to get my checksum, then I used this line of code in terminal:
cd ~/Desktop/
swift package compute-checksum ~/Desktop/MyXCFramework.xcframework.zip
But terminal through this error:
error: root manifest not found
How can I solve this error?
I do not know why terminal trying to reach to manifest in this point?! because there is no manifest yet! I need checksum to build my manifest for Distribute binary framework as Swift package. So How can I solve this issue?
~/Desktop/
when computing the checksum? I remember that I had similar issue and when running from the same folder it solved. – Unhandy