Force install git-lfs before performing initial clone

This commit is contained in:
Philip Trauner 2018-04-09 19:38:05 +02:00
parent 8668fe9afc
commit 024d0b4818

View file

@ -4,6 +4,9 @@ mkdir -p root-fs/var/0s/source
cd root-fs/var/0s/source
# Make sure that git lfs is installed, otherwise only lfs pointers will be downloaded
git lfs install
if [ ! -d c0re ]; then
git clone https://github.com/F-WuTS/c0re.git --recursive --depth=1
else