Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Kane Cheshire committed Jan 30, 2018
2 parents 15363f3 + 55e4416 commit 0e15470
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ end
def _update_team_id_if_necessary()
project_path = ENV['FL_PROJECT_SIGNING_PROJECT_PATH']
team_id = _get_team_id()
if !project_path.to_s.strip.nil? && !team_id.to_s.strip.nil?
if !project_path.to_s.strip.empty? && !team_id.to_s.strip.empty?
UI.message("Updating project team with project path '#{project_path}' and team id '#{team_id}'.")
update_project_team(path: project_path, teamid: team_id)
else
Expand Down

0 comments on commit 0e15470

Please sign in to comment.