Commit 9a369fa5 authored by Orta's avatar Orta

Merge pull request #1758 from wilkinsona/improve-version-warning

Improve the lockfile version warning message
parents 870eed7c 8073d99f
...@@ -155,15 +155,15 @@ module Pod ...@@ -155,15 +155,15 @@ module Pod
# @return [void] # @return [void]
# #
# @note The warning about the version of the Lockfile doesn't uses the # @note The warning about the version of the Lockfile doesn't use the
# `UI.warn` method because it prints the output only at the end # `UI.warn` method because it prints the output only at the end
# of the installation. At that time CocoaPods could have crashed. # of the installation. At that time CocoaPods could have crashed.
# #
def analyze def analyze
if lockfile && lockfile.cocoapods_version > Version.new(VERSION) if lockfile && lockfile.cocoapods_version > Version.new(VERSION)
STDERR.puts '[!] The version of CocoaPods used to generate the lockfile is '\ STDERR.puts '[!] The version of CocoaPods used to generate the lockfile is '\
'higher that the one of the current executable. Incompatibility ' \ 'higher than the version of the current executable. Incompatibility ' \
'issues might arise.'.yellow 'issues may arise.'.yellow
end end
analyzer = Analyzer.new(sandbox, podfile, lockfile) analyzer = Analyzer.new(sandbox, podfile, lockfile)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment