从 fastlane 参数中获取参数
Take parameters from fastlane argument
Fastlane 文件看起来像这样
lane :build do |options|
scheme = options[:scheme]
puts scheme
end
但是 puts
的输出是 空白 每当我在其中传递任何值时。
我正在从终端这样调用快车道:- fastlane build options:Release
在上面的示例中,您需要 运行:
fastlane build scheme:Release
按您的预期输出 Release
。
options
是参数字典,在命令中 scheme
之后提供的参数的 :scheme
键。
Fastlane 文件看起来像这样
lane :build do |options|
scheme = options[:scheme]
puts scheme
end
但是 puts
的输出是 空白 每当我在其中传递任何值时。
我正在从终端这样调用快车道:- fastlane build options:Release
在上面的示例中,您需要 运行:
fastlane build scheme:Release
按您的预期输出 Release
。
options
是参数字典,在命令中 scheme
之后提供的参数的 :scheme
键。