lfs: fix lfs pointer paths

Summary:
A recent refactor changed the location of the lfs helper, but a number
of paths weren't correct so this broke make local. This fixes them.

Reviewed By: singhsrb

Differential Revision: D8922233

fbshipit-source-id: 90b2997c702aabb352052a410d82554dfa083526
This commit is contained in:
Durham Goode 2018-07-19 14:10:29 -07:00 committed by Facebook Github Bot
parent d70332c0c1
commit 11bfd6564f
2 changed files with 3 additions and 3 deletions

View File

@ -54,8 +54,8 @@ all: build doc
build/re2-2018-04-01.tar.gz:
mkdir -p build
if [ -e ../../../tools/scm/lfs/lfs.py ]; then \
../../../tools/scm/lfs/lfs.py -l fb/tools/.lfs-pointers download build/re2-2018-04-01.tar.gz; \
if [ -e ../../tools/lfs/lfs.py ]; then \
../../tools/lfs/lfs.py -l fb/tools/.lfs-pointers download build/re2-2018-04-01.tar.gz; \
else \
curl -L https://github.com/google/re2/archive/2018-04-01.tar.gz -o $@; \
fi

View File

@ -17,7 +17,7 @@ import tarfile
FBSOURCE = os.path.realpath(os.path.join(__file__, "../../../../../"))
LFS_SCRIPT_PATH = os.path.join(FBSOURCE, "tools/scm/lfs/lfs.py")
LFS_SCRIPT_PATH = os.path.join(FBSOURCE, "fbcode/tools/lfs/lfs.py")
LFS_POINTERS = os.path.join(__file__, '../../fb/tools/.lfs-pointers')