From 7af1a9d79b056fbd6ba4c0689f4af6f6dfbcfdae Mon Sep 17 00:00:00 2001 From: Shazron Abdullah Date: Mon, 12 Oct 2015 16:48:41 -0700 Subject: [PATCH] Fixes #184 - Change min xcode version for Travis CI --- check_reqs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_reqs.js b/check_reqs.js index ce06b73..45f9eb6 100755 --- a/check_reqs.js +++ b/check_reqs.js @@ -4,7 +4,7 @@ var util = require('util'); var os = require('os'); var child_process = require('child_process'); -var XCODEBUILD_MIN_VERSION = '6.4'; +var XCODEBUILD_MIN_VERSION = '6.0'; var XCODEBUILD_NOT_FOUND_MESSAGE = util.format('Please install Xcode version %s or greater from the Mac App Store.', XCODEBUILD_MIN_VERSION); var TOOL = 'xcodebuild';