Commit: 28c66e118e28cc9c1cdba46d35a61e838a0f255c Author: Sebastián Barschkis Date: Sun Oct 6 23:09:55 2019 +0200 Branches: fluid-mantaflow https://developer.blender.org/rB28c66e118e28cc9c1cdba46d35a61e838a0f255c
Fix broken manta update script =================================================================== M intern/mantaflow/intern/manta_develop/update_mantaflow.sh =================================================================== diff --git a/intern/mantaflow/intern/manta_develop/update_mantaflow.sh b/intern/mantaflow/intern/manta_develop/update_mantaflow.sh index 60064cbd40d..06e9eb40381 100644 --- a/intern/mantaflow/intern/manta_develop/update_mantaflow.sh +++ b/intern/mantaflow/intern/manta_develop/update_mantaflow.sh @@ -27,9 +27,10 @@ fi cd $MANTA_INSTALLATION # Check-out manta repo from git? -if [ "$CLEAN_REPOSITORY" = true ] +if [ "$CLEAN_REPOSITORY" = true ]; then if cd mantaflowgit/; then git pull; else git clone [email protected]:thunil/mantaflowgit.git; cd mantaflowgit; fi git checkout develop +fi MANTA_OMP_PATH=$MANTA_INSTALLATION/mantaflowgit/build_omp/ MANTA_TBB_PATH=$MANTA_INSTALLATION/mantaflowgit/build_tbb/ _______________________________________________ Bf-blender-cvs mailing list [email protected] https://lists.blender.org/mailman/listinfo/bf-blender-cvs
