Skip to content

Commit

Permalink
fix: android match action path
Browse files Browse the repository at this point in the history
  • Loading branch information
v-vila committed Mar 4, 2024
1 parent ca4b2f5 commit 962c964
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/fastlane/plugin/common/actions/android_match_action.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def self.run(params)
git_branch = ENV.fetch('ANDROID_MATCH_BRANCH', nil)

sh("git clone --branch #{git_branch} #{git_url} #{temp_dir}")
FileUtils.cp("#{temp_dir}/#{keystore}", '/')
FileUtils.cp("#{temp_dir}/#{keystore}", '.')
FileUtils.rm_rf(temp_dir)
end

Expand Down
2 changes: 1 addition & 1 deletion lib/fastlane/plugin/common/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Fastlane
module Common
VERSION = "0.1.14"
VERSION = "0.1.15"
end
end

0 comments on commit 962c964

Please sign in to comment.