0

我正在尝试使用 Fastlane 将 Slather 创建的代码覆盖率报告发送到 Codacy。这是车道:

  desc "Do A Slather and send to Codacy"
  lane :code_coverage do |options|
    slather(output_directory: "SlatherReports", scheme: "MyApp", configuration: "Debug", workspace: "MyApp.xcworkspace", proj: "MyApp.xcodeproj", cobertura_xml: true, use_bundle_exec: true)
    ENV["CODACY_PROJECT_TOKEN"] = options[:codacy_token]
    sh "bash <(curl -Ls https://coverage.codacy.com/get.sh -r SlatherReports/cobertura.xml)"
  end

Slather 工作,但 bash 脚本没有。它返回了这个错误:

[06:40:19]:命令 'bash <(curl -Ls https://coverage.codacy.com/get.sh -r SlatherReports/cobertura.xml)' 的退出状态是 2 而不是 0。sh:- c:第 0 行:意外标记附近的语法错误`(' sh:-c:第 0 行:`bash <(curl -Ls https://coverage.codacy.com/get.sh -r SlatherReports/cobertura.xml)'

那么,我该如何解决这个问题?谢谢。

4

1 回答 1

0

我自己找到了答案。这是一个非常简单的(为什么我没有早点想到这个?)。我只是把整bash <(curl -Ls https://coverage.codacy.com/get.sh -r SlatherReports/cobertura.xml)行放到一个不同的 bash 脚本文件中,然后调用它。哈哈。

于 2020-04-07T00:53:54.023 回答