Open up the Fastfile we worked on in the previous chapter and go to the beta lane. We are simply going to add one line below the other commands, so your lane should now look something like this:
lane :beta do register_devices(devices_file: "devices.txt") match(git_url: "git@bitbucket.org:doron_katz/my-fastlane-keys.git", type: "development", app_identifier: "com.doronkatz.firefox") pem end
Our lane is starting to look more comprehensive by the day. Let's run the entire lane again by typing the following in the Terminal:
fastlane beta
The output should produce something similar to the following:
[20:59:44]: ------------------------------------------------- [20:59:44]: --- Step: Verifying required fastlane version --- ...