Method: Fastlane::CLIToolsDistributor.process_emojis

Defined in:
fastlane/lib/fastlane/cli_tools_distributor.rb

.process_emojis(tool_name) ⇒ Object

Since fastlane also supports the rocket and biceps emoji as executable we need to map those to the appropriate tools



157
158
159
160
161
162
# File 'fastlane/lib/fastlane/cli_tools_distributor.rb', line 157

def process_emojis(tool_name)
  return {
    "🚀" => "fastlane",
    "💪" => "gym"
  }[tool_name] || tool_name
end