Skip to content

Commit

Permalink
ruby script tweak to deal with inconsistent Xcode output
Browse files Browse the repository at this point in the history
  • Loading branch information
timothy place committed Feb 28, 2015
1 parent d58d50c commit eee5d15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Shared/jamomalib.rb
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def build_xcode_project(projectdir, projectname, configuration, clean, distropat
out = stdout.read
err = stderr.read
end
if /Build succeeded/.match(out)
if /Build succeeded/.match(out) || /BUILD SUCCEEDED/.match(out)
@cur_count+=1
projectname = "#{projectname}".ljust(27)
puts "#{projectname} BUILD SUCCEEDED"
Expand Down

0 comments on commit eee5d15

Please sign in to comment.