https://github.com/genome/genome
Raw File
Tip revision: c7825b7e02da73e2e2364c4dc54d6bf1d3c549e4 authored by dmorton on 12 March 2014, 16:52:11 UTC
Bail out of displaying logs if there is no workflow
Tip revision: c7825b7
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