gpt4 book ai didi

FaSTLane 设置选项自动值

转载 作者:行者123 更新时间:2023-12-03 23:37:37 27 4
gpt4 key购买 nike

我想提交带有 optional 的车道。例如车道:

lane :mylane do |options|
mailgun(
to: "#{options[:mailto]}"
....
)
end

如何给 :mailto 一个默认值?因此,如果我运行 fastlane mylane,它会自动将 :mailto 设置为 mail@example.com。

但是如果我运行 fastlane mylane mailto:"secondmail@example.com" 它将使用该值

最佳答案

我不确定有没有办法让 FaSTLane 通过默认设置。处理很简单:

https://github.com/fastlane/fastlane/blob/master/fastlane/lib/fastlane/command_line_handler.rb#L10

但是你可以在你的 Fastfile 中轻松地做到这一点:

lane :mylane do |options|
mail_addr = options[:mailto] || "mail@example.com"
mailgun(
to: "#{mail_addr}"
....
)
end

关于FaSTLane 设置选项自动值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47348326/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com