Skip to content

Instantly share code, notes, and snippets.

@Fweeb
Last active August 29, 2015 14:27
Show Gist options
  • Save Fweeb/2e629503450214c3ad3e to your computer and use it in GitHub Desktop.
Save Fweeb/2e629503450214c3ad3e to your computer and use it in GitHub Desktop.
From an already cloned Blender repo, pull in updates and rebuild
#!/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