Fix copy/paste bug in open source BUCK file for React Native.

Reviewed By: bestander, lacker

Differential Revision: D4562337

fbshipit-source-id: 2ca24344435b650a9c740eba9b196e70015b5cdb
This commit is contained in:
Michael Bolin 2017-02-15 09:35:45 -08:00 committed by Facebook Github Bot
parent ffb6daad4a
commit f9df89ac95
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ for jarfile in glob(['libs/*.jar']):
)
for aarfile in glob(['libs/*.aar']):
name = 'aars__' + jarfile[jarfile.rindex('/') + 1: jarfile.rindex('.aar')]
name = 'aars__' + aarfile[aarfile.rindex('/') + 1: aarfile.rindex('.aar')]
lib_deps.append(':' + name)
android_prebuilt_aar(
name = name,