diff options
Diffstat (limited to 'lib/leap_cli')
| -rw-r--r-- | lib/leap_cli/leapfile.rb | 14 | 
1 files changed, 5 insertions, 9 deletions
| diff --git a/lib/leap_cli/leapfile.rb b/lib/leap_cli/leapfile.rb index 1bb2fa0..c2bc10b 100644 --- a/lib/leap_cli/leapfile.rb +++ b/lib/leap_cli/leapfile.rb @@ -65,17 +65,13 @@ module LeapCli            Util.bail! "ERROR: The file `#{platform_file}` does not exist. Please check the value of `@platform_directory_path` in `Leapfile` or `~/.leaprc`."          end          require "#{@platform_directory_path}/platform.rb" -        if !Leap::Platform.compatible_with_cli?(LeapCli::VERSION) +        if !Leap::Platform.compatible_with_cli?(LeapCli::VERSION) || +           !Leap::Platform.version_in_range?(LeapCli::COMPATIBLE_PLATFORM_VERSION)            Util.bail! "This leap command (v#{LeapCli::VERSION}) " + -                     "is not compatible with the platform #{@platform_directory_path} (v#{Leap::Platform.version}). " + -                     "You need leap command #{Leap::Platform.compatible_cli.first} to #{Leap::Platform.compatible_cli.last}." +                     "is not compatible with the platform #{@platform_directory_path} (v#{Leap::Platform.version}).\n   " + +                     "You need either leap command #{Leap::Platform.compatible_cli.first} to #{Leap::Platform.compatible_cli.last} or " + +                     "platform version #{LeapCli::COMPATIBLE_PLATFORM_VERSION.first} to #{LeapCli::COMPATIBLE_PLATFORM_VERSION.last}"          end -        if !Leap::Platform.version_in_range?(LeapCli::COMPATIBLE_PLATFORM_VERSION) -          Util.bail! "This leap command (v#{LeapCli::VERSION}) " + -                     "is not compatible with the platform #{@platform_directory_path} (v#{Leap::Platform.version}). " + -                     "You need platform version #{LeapCli::COMPATIBLE_PLATFORM_VERSION.first} to #{LeapCli::COMPATIBLE_PLATFORM_VERSION.last}." -        end -          unless @allow_production_deploy.nil?            Util::log 0, :warning, "in Leapfile: @allow_production_deploy is no longer supported."          end | 
