Skip to content

Commit

Permalink
fix #2
Browse files Browse the repository at this point in the history
  • Loading branch information
bamx23 committed Dec 11, 2019
1 parent de993d1 commit 16a7cba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def self.find_binary(params)

params[:binary_path] = File.expand_path(params[:binary_path])

cli_version = Gem::Version.new(`#{params[:binary_path]} --version`.strip)
cli_version = Gem::Version.new(`#{params[:binary_path].shellescape} --version`.strip)
unless Gem::Requirement.new(Fastlane::Appmetrica::CLI_VERSION) =~ cli_version
UI.user_error!("Your 'helper' is outdatedcd, please upgrade to at least version "\
"#{Fastlane::Appmetrica::CLI_VERSION} and start again!")
Expand Down
2 changes: 1 addition & 1 deletion lib/fastlane/plugin/appmetrica/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Fastlane
module Appmetrica
VERSION = "0.1.1"
VERSION = "0.1.2"
CLI_VERSION = "~> 0.0"
end
end

0 comments on commit 16a7cba

Please sign in to comment.