Skip to content

Commit

Permalink
fix platform (#7360)
Browse files Browse the repository at this point in the history
  • Loading branch information
hjanuschka authored and KrauseFx committed Dec 16, 2016
1 parent a07d38e commit 3378fa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deliver/lib/deliver/detect_values.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def find_app_identifier(options)
def find_app(options)
search_by = options[:app_identifier]
search_by = options[:app] if search_by.to_s.length == 0
app = Spaceship::Application.find(search_by)
app = Spaceship::Application.find(search_by, mac: options[:platform] == "osx")
if app
options[:app] = app
else
Expand Down

0 comments on commit 3378fa3

Please sign in to comment.