Skip to content

Commit

Permalink
add output to build.sh to say what version it is building
Browse files Browse the repository at this point in the history
  • Loading branch information
jrandall committed Nov 29, 2017
1 parent eb4a5a3 commit 1f9cba9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.sh
Expand Up @@ -3,13 +3,14 @@
set -euf -o pipefail

generator_version=$(git describe --tags --always)
echo "GATK CWL generator: gatk-cwl-generator-${generator_version}"

VERSIONS=( 3.5 3.6 3.7 3.8 4.beta-latest )

tmpdir=$(mktemp -d)
builddir="${tmpdir}/gatk_cmdline_tools"
mkdir -p "${builddir}"
echo "Building CWL in ${builddir} for GATK ${VERSIONS[@]}"
echo "Building CWL in ${builddir} for GATK versions ${VERSIONS[@]}"

for ver in ${VERSIONS[@]}
do
Expand Down

0 comments on commit 1f9cba9

Please sign in to comment.