Skip to content

Commit

Permalink
Fix upload of crashlytics symbols for tvOS apps (fastlane#9866)
Browse files Browse the repository at this point in the history
* Fix upload of crashlytics symbols for tvOS apps

* fix style
  • Loading branch information
tmm1 authored and mpirri committed Jul 26, 2017
1 parent 49f96da commit 131bfad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def self.upload_dsym(params, path)
command = []
command << File.expand_path(params[:binary_path]).shellescape
command << "-a #{params[:api_token]}"
command << "-p #{params[:platform]}"
command << "-p #{params[:platform] == 'appletvos' ? 'tvos' : params[:platform]}"
command << File.expand_path(path).shellescape
begin
Actions.sh(command.join(" "), log: false)
Expand Down

0 comments on commit 131bfad

Please sign in to comment.