Commit 12c8cc10 authored by Alexander Nosick's avatar Alexander Nosick

Update unity.rb

parent dfae41b4
...@@ -19,6 +19,7 @@ module Fastlane ...@@ -19,6 +19,7 @@ module Fastlane
build_cmd << " -executeMethod #{params[:execute_method]}" build_cmd << " -executeMethod #{params[:execute_method]}"
build_cmd << " -buildTarget #{params[:build_target]}" build_cmd << " -buildTarget #{params[:build_target]}"
build_cmd << " -logFile #{params[:log_file]}" build_cmd << " -logFile #{params[:log_file]}"
build_cmd << " -quitTimeout #{params[:quit_timeout]}"
UI.message "" UI.message ""
UI.message Terminal::Table.new( UI.message Terminal::Table.new(
...@@ -74,6 +75,11 @@ module Fastlane ...@@ -74,6 +75,11 @@ module Fastlane
description: "Log File", description: "Log File",
optional: true, optional: true,
default_value: "/dev/stdout"), default_value: "/dev/stdout"),
FastlaneCore::ConfigItem.new(key: :quit_timeout,
env_name: "UNITY_QUIT_TIMEOUT",
description: "Quit Timeout",
optional: true,
default_value: 300),
] ]
end end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment