Replace top-level `elif` with `if` in BUCK files.
Reviewed By: mzlee Differential Revision: D4550165 fbshipit-source-id: 65d636c2e9e273bf45e093fe2c07aec18659e733
This commit is contained in:
parent
7c82803c4d
commit
f294f61eeb
|
@ -60,7 +60,7 @@ if THIS_IS_FBANDROID:
|
|||
)
|
||||
)
|
||||
|
||||
elif THIS_IS_FBOBJC:
|
||||
if THIS_IS_FBOBJC:
|
||||
def react_library(**kwargs):
|
||||
ios_library(
|
||||
name = 'bridge',
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue