From 024d0b48189176b36a15f2eb32d95a146ccee6c3 Mon Sep 17 00:00:00 2001 From: Philip Trauner Date: Mon, 9 Apr 2018 19:38:05 +0200 Subject: [PATCH] Force install git-lfs before performing initial clone --- scripts/setup-root-fs.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/setup-root-fs.sh b/scripts/setup-root-fs.sh index b033897..035483a 100755 --- a/scripts/setup-root-fs.sh +++ b/scripts/setup-root-fs.sh @@ -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