From 09795b6334e480862e48cdf2298cae2a66704fe9 Mon Sep 17 00:00:00 2001 From: Eli White Date: Thu, 10 Jan 2019 11:08:04 -0800 Subject: [PATCH] Don't glob over single files Summary: Was getting a lint error for this being in the glob Reviewed By: rickhanlonii Differential Revision: D13618406 fbshipit-source-id: cebaff99cf71c6ff949342e8cb9f36853616cf0c --- codegen/BUCK | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codegen/BUCK b/codegen/BUCK index 53784f9537..49e7938c75 100644 --- a/codegen/BUCK +++ b/codegen/BUCK @@ -10,9 +10,9 @@ fb_native.sh_binary( resources = glob( [ "**/*.js", - "buck_tests/generate-tests.js", ], ) + [ + "buck_tests/generate-tests.js", "xplat//js:setup_env", ], visibility = ["PUBLIC"],