Skip to content

Commit fbd47bf

Browse files
committed
Fix early return logic
1 parent 5c88340 commit fbd47bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fastlane/Fastfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -763,7 +763,7 @@ platform :ios do
763763
dsym_path: './build/WooCommerce.app.dSYM.zip'
764764
)
765765

766-
return if ENV['BUILDKITE_PULL_REQUEST'].nil?
766+
next if ENV.fetch('BUILDKITE_PULL_REQUEST', 'false') == 'false'
767767

768768
# PR Comment
769769
comment_body = prototype_build_details_comment(app_display_name: 'WooCommerce iOS Prototype')

0 commit comments

Comments
 (0)