We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a769a7 commit 69f5e03Copy full SHA for 69f5e03
lib/fastlane/plugin/wpmreleasetoolkit/helper/ios/ios_git_helper.rb
@@ -15,7 +15,7 @@ module GitHelper
15
# @param [Bool] include_deliverfile If true (the default), includes the `fastlane/Deliverfile` in files being commited
16
#
17
def self.commit_version_bump(include_deliverfile: true)
18
- files_list = [File.join(ENV['PROJECT_ROOT_FOLDER'], 'config', '.')]
+ files_list = [File.join(get_from_env!(key: 'PROJECT_ROOT_FOLDER'), 'config', '.')]
19
files_list.append File.join('fastlane', 'Deliverfile') if include_deliverfile
20
21
Fastlane::Helper::GitHelper.commit(message: 'Bump version number', files: files_list, push: true)
0 commit comments