diff --git a/itests/pom.xml b/itests/pom.xml index 400075b..a4640ba 100644 --- a/itests/pom.xml +++ b/itests/pom.xml @@ -89,7 +89,7 @@ local md5File="$tarName".md5sum curl -Sso $DOWNLOAD_DIR/$md5File "$url".md5sum cd $DOWNLOAD_DIR - if ! md5sum -c $md5File; then + if type md5sum >/dev/null && ! md5sum -c $md5File; then curl -Sso $DOWNLOAD_DIR/$tarName $url || return 1 fi