Revision 44bc711ecbc444bdd905922aec878da8dae9bef3 authored by Thomas B. Mooney on 12 December 2018, 22:08:03 UTC, committed by Thomas B. Mooney on 12 December 2018, 22:08:03 UTC
Otherwise this generates bogus models in addition to the correct ones.
1 parent 6a2d564
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