Skip to content

Commit

Permalink
Merge pull request #48929 from Expensify/Rory-SyntaxErrorInRuby
Browse files Browse the repository at this point in the history
[No QA] fix typo in ruby syntax
  • Loading branch information
luacmartins authored Sep 10, 2024
2 parents 286046d + 2c0e76e commit 635376e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ def setGradleOutputsInEnv()
env_vars = {
KEY_GRADLE_APK_PATH => lane_context[SharedValues::GRADLE_APK_OUTPUT_PATH],
}
if (lane_context.key?(SharedValues::GRADLE_AAB_OUTPUT_PATH)) {
if lane_context.key?(SharedValues::GRADLE_AAB_OUTPUT_PATH)
env_vars[KEY_GRADLE_AAB_PATH] = lane_context[SharedValues::GRADLE_AAB_OUTPUT_PATH]
}
end
exportEnvVars(env_vars)
end

Expand Down

0 comments on commit 635376e

Please sign in to comment.