Skip to content

Commit e057c88

Browse files
committed
Fix build.gradle search path
1 parent dd2de20 commit e057c88

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/fastlane/plugin/commit_android_version_bump/actions/commit_android_version_bump_action.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def self.run(params)
2525
repo_pathname = Pathname.new(repo_path)
2626

2727

28-
build_file_paths = Dir[File.expand_path(File.join('../**/',app_folder_name,'build.gradle'))]
28+
build_file_paths = Dir[File.expand_path(File.join('**/',app_folder_name,'build.gradle'))]
2929

3030
# no build.gradle found: error
3131
UI.user_error!('Could not find a build.gradle in the current repository\'s working directory.') if build_file_paths.count == 0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Fastlane
22
module CommitAndroidVersionBump
3-
VERSION = "0.1.0"
3+
VERSION = "0.1.1"
44
end
55
end

0 commit comments

Comments
 (0)