Skip to content

Commit

Permalink
Replace top-level elif with if in BUCK files.
Browse files Browse the repository at this point in the history
Reviewed By: mzlee

Differential Revision: D4550165

fbshipit-source-id: 65d636c2e9e273bf45e093fe2c07aec18659e733
  • Loading branch information
bolinfest authored and facebook-github-bot committed Feb 14, 2017
1 parent 7c82803 commit f294f61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ReactCommon/cxxreact/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ if THIS_IS_FBANDROID:
)
)

elif THIS_IS_FBOBJC:
if THIS_IS_FBOBJC:
def react_library(**kwargs):
ios_library(
name = 'bridge',
Expand Down
2 changes: 1 addition & 1 deletion ReactCommon/jschelpers/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ if THIS_IS_FBANDROID:
],
)

elif THIS_IS_FBOBJC:
if THIS_IS_FBOBJC:
ios_library(
name = 'jschelpers',
inherited_buck_flags = STATIC_LIBRARY_IOS_FLAGS,
Expand Down

0 comments on commit f294f61

Please sign in to comment.