Skip to content

Commit

Permalink
md5sum -> md5 on osx
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkinsc committed Feb 22, 2017
1 parent 728da21 commit 0e55d16
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion travis/install-tools.sh
Expand Up @@ -11,7 +11,11 @@ if [ ! -d $GATK_PATH ]; then
pwd
wget https://storage.googleapis.com/sabeti-public/software_testing/GenomeAnalysisTK-3.6.tar.gz.enc
openssl aes-256-cbc -d -k "$BUNDLE_SECRET" -in GenomeAnalysisTK-3.6.tar.gz.enc -out GenomeAnalysisTK-3.6.tar.gz
md5sum GenomeAnalysisTK-3.6.tar.gz
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
md5 GenomeAnalysisTK-3.6.tar.gz
else
md5sum GenomeAnalysisTK-3.6.tar.gz
fi
# It appears that GATK tarball is produced on OS X leading to warnings
TAR_OPTS=
[[ "$TRAVIS_OS_NAME" = "linux" ]] && TAR_OPTS="--warning=no-unknown-keyword"
Expand Down

0 comments on commit 0e55d16

Please sign in to comment.