Skip to content

Commit d8ea670

Browse files
committed
Fix a bad variable name
1 parent d9ef9c1 commit d8ea670

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fastlane/Fastfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -983,7 +983,7 @@ def generate_installable_build_number
983983
branch = ENV['BUILDKITE_BRANCH']
984984
pr_num = ENV['BUILDKITE_PULL_REQUEST']
985985

986-
return pr_num == 'false' ? "#{branch}-#{commit}" : "pr#{pr_number}-#{commit}"
986+
return pr_num == 'false' ? "#{branch}-#{commit}" : "pr#{pr_num}-#{commit}"
987987
else
988988
repo = Git.open(PROJECT_ROOT_FOLDER)
989989
commit = repo.current_branch

0 commit comments

Comments
 (0)