https://github.com/genome/genome
Revision ca52cfdbacf568cad5f7edd856b85f3161086f84 authored by Anthony Brummett on 07 May 2014, 21:37:50 UTC, committed by Anthony Brummett on 09 May 2014, 14:13:34 UTC
1 parent d1f9e48
Raw File
Tip revision: ca52cfdbacf568cad5f7edd856b85f3161086f84 authored by Anthony Brummett on 07 May 2014, 21:37:50 UTC
Populate the validation values in the timeline.analysis_project_event_type table
Tip revision: ca52cfd
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