mirror of
https://gitlab.com/stilobique/blender-docker.git
synced 2026-05-28 12:41:22 +02:00
17 lines
572 B
Bash
17 lines
572 B
Bash
#!/bin/bash
|
|
|
|
echo "------------------------------";
|
|
echo " > Get the Blender repository";
|
|
mkdir -p /opt/blender-git/lib
|
|
cd /opt.blender-git/lib || exit 1
|
|
git clone https://projects.blender.org/blender/blender.git
|
|
|
|
echo "------------------------------";
|
|
echo " > Get all Blender submodule";
|
|
cd /opt/blender-git/blender || exit 1
|
|
git submodule update --init --recursive
|
|
|
|
echo "------------------------------";
|
|
echo " > Get the all lib Blender (svn)";
|
|
cd /opt/blender-git/lib || exit 1
|
|
svn checkout https://svn.blender.org/svnroot/bf-blender/trunk/lib/linux_centos7_x86_64 |