从Fastlane参数中获取参数



fastlane文件看起来像

lane :build do |options|
  scheme = options[:scheme]
  puts scheme
end

但是,每当我传递任何值时, puts的输出是。我从终端称之为这样的快车道:-fastlane build options:Release

在上面的示例中,您需要运行: fastlane build scheme:Release到您期望输出Release

options是参数的字典,而命令中 scheme之后提供的参数的 :scheme键。

相关内容

  • 没有找到相关文章

最新更新