From 55405033684cda362ba2a1b839335dd8b3ba5395 Mon Sep 17 00:00:00 2001 From: Pierre-Marc Airoldi Date: Wed, 28 Sep 2016 00:28:05 -0400 Subject: [PATCH] Use the bundler version of xcpretty --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index b359c73b11..8d8e8b0ddd 100644 --- a/Rakefile +++ b/Rakefile @@ -60,7 +60,7 @@ def xcodebuild(type, name, scheme, configuration, sdk, destination, tasks, xcpre abort "Invalid project type, use `:project` for xcodeproj and `:workspace` for xcworkspace." end - sh "set -o pipefail && xcodebuild #{project_type} '#{name}' -scheme '#{scheme}' -configuration '#{configuration}' -sdk #{sdk} -destination #{destination} #{tasks} | xcpretty -c #{xcprety_args}" + sh "set -o pipefail && xcodebuild #{project_type} '#{name}' -scheme '#{scheme}' -configuration '#{configuration}' -sdk #{sdk} -destination #{destination} #{tasks} | bundle exec xcpretty -c #{xcprety_args}" end