fastlane文件看起来像
lane :build do |options|
scheme = options[:scheme]
puts scheme
end
但是,每当我传递任何值时, puts
的输出是。我从终端称之为这样的快车道:-fastlane build options:Release
在上面的示例中,您需要运行: fastlane build scheme:Release
到您期望输出Release
。
options
是参数的字典,而命令中 scheme
之后提供的参数的 :scheme
键。