Last active
August 29, 2015 14:27
-
-
Save Fweeb/2e629503450214c3ad3e to your computer and use it in GitHub Desktop.
From an already cloned Blender repo, pull in updates and rebuild
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script should be run from within your build directory (assuming cmake), e.g. ~/src/blender/build | |
cd ../blender | |
git pull --rebase | |
git submodule foreach git pull --rebase origin master | |
cd ../build | |
make $MAKEFLAGS | |
# make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment