### Install Xcode Command Line Tools (Shell) Source: https://github.com/pg8wood/osrs-touch-bar/blob/master/fastlane/README.md Installs or updates the Xcode command line tools, which are required for many development tasks on macOS, including using fastlane. ```Shell xcode-select --install ``` -------------------------------- ### Install fastlane via RubyGems (Shell) Source: https://github.com/pg8wood/osrs-touch-bar/blob/master/fastlane/README.md Installs the fastlane tool using the RubyGems package manager. The [sudo] prefix might be required depending on system configuration, and -NV provides verbose output. ```Shell [sudo] gem install fastlane -NV ``` -------------------------------- ### Run fastlane macos build lane (Shell) Source: https://github.com/pg8wood/osrs-touch-bar/blob/master/fastlane/README.md Executes the 'build' lane defined within the 'macos' platform configuration in the project's Fastfile. This command triggers the automated build process for the macOS application as defined in the fastlane setup. ```Shell fastlane macos build ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.