我正在尝试设置wix/detox
,其中一项要求是通过自制软件安装fbsimctl
。
这是我的控制台输出:
==> Installing fbsimctl from facebook/fb
==> Downloading https://github.com/facebook/FBSimulatorControl/tarball/v0.4.0
==> Downloading from https://codeload.github.com/facebook/FBSimulatorControl/legacy.tar.gz/v0.4.0
######################################################################## 100.0%
Error: SHA256 mismatch
Expected: 5d2ed56047f2b4b3f5f0804545c6730876be2372a834e70bc88a4cb9d4253e19
Actual: 4a8bb8aed15f756aeb57e4a1f8724e40a3dfaa27740ae1644021386ab64bd9fb
Archive: /Users/dan/Library/Caches/Homebrew/fbsimctl-0.4.0.0
To retry an incomplete download, remove the file above.
然后我跑了:
rm -rf /Users/dan/Library/Caches/Homebrew/fbsimctl-0.4.0.0
然后:
brew update && brew cleanup && brew cask cleanup
然后再一次:
export CODE_SIGNING_REQUIRED=NO && brew install fbsimctl
但我仍然得到上述控制台输出。
答案 0 :(得分:2)
文件的checksum与公式不匹配,您可以通过下载文件进行验证:
$ curl -L -O https://github.com/facebook/FBSimulatorControl/tarball/v0.4.0
后来确定校验和:
$ $ openssl dgst -sha256 v0.4.0
SHA256(v0.4.0)= 4a8bb8aed15f756aeb57e4a1f8724e40a3dfaa27740ae1644021386ab64bd9fb
我建议创建一个拉取请求(如果您知道/信任并确保源是正确的)但更好地联系开发人员https://github.com/facebook/homebrew-fb/blob/master/fbsimctl.rb关于此问题,校验和的主要思想是保证数据完整性。