fastlane CLI 是否提供指定 fastfile 位置的选项?

Does the fastlane CLI provide an option to specify the location of a fastfile?

我想从我项目的父目录的命令行中 运行 fastlane。是否可以指定 fastlane 运行的目录位置?

类似于:fastlane --path=./project/ lint

目前没有这个选项。 实现此目的的唯一方法是将当前目录更改为预设 fastlane 配置的目录。

cd ./project/
fastlane lint