From cd97d2aa6da3ec74876d14a04479bf8e86a4decb Mon Sep 17 00:00:00 2001 From: Gary Liu <shenghui.liu@intel.com> Date: Tue, 7 Apr 2020 16:00:22 +0800 Subject: [PATCH] revert the gitignore due to build failure Hi, the .gitignore cannot resolve ```/tensorflow/lite/**/[ios|objc|swift]*/BUILD``` this code but ignore all BUILD file in /tensorflow/lite/**, and it will lead to build failure when I push the code to my repo and pull it again to build. --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index eab8a64c63d..72cb418fe11 100644 --- a/.gitignore +++ b/.gitignore @@ -38,7 +38,9 @@ gradleBuild *.pbxproj *.xcworkspace /*.podspec -/tensorflow/lite/**/[ios|objc|swift]*/BUILD +/tensorflow/lite/**/ios/BUILD +/tensorflow/lite/**/objc/BUILD +/tensorflow/lite/**/swift/BUILD /tensorflow/lite/examples/ios/simple/data/*.tflite /tensorflow/lite/examples/ios/simple/data/*.txt Podfile.lock