Revision d44ef78673ff29a2b1b4a213674355596b7a6f48 authored by Thomas B. Mooney on 23 March 2015, 19:26:18 UTC, committed by Thomas B. Mooney on 23 March 2015, 19:26:18 UTC
2 parent s fb73f4d + 4e089f0
Raw File
prepare-submodules
#!/bin/bash
set -o errexit
for submodule in $@; do
    git submodule update --init $submodule
    cd $submodule && git reset --hard HEAD && git clean -xdf && cd -
done
back to top