26 lines
515 B
Bash
Executable file
26 lines
515 B
Bash
Executable file
cd ..
|
|
|
|
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
|
|
git -C c0re fetch --all
|
|
git -C c0re reset --hard origin/master
|
|
|
|
fi
|
|
|
|
if [ ! -d harrogate ]; then
|
|
git clone https://github.com/F-WuTS/harrogate.git --depth=1
|
|
else
|
|
git -C harrogate fetch --all
|
|
git -C harrogate reset --hard origin/master
|
|
|
|
fi
|
|
|
|
|