mirror of
https://github.com/facebook/sapling.git
synced 2025-01-06 04:43:19 +03:00
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:
parent
d70332c0c1
commit
11bfd6564f
4
Makefile
4
Makefile
@ -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
|
||||
|
@ -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')
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user