Browse Source

Don't use --ignore-missing in md5sum because it's too new for Travis

majekw 7 years ago
parent
commit
53aa364c67
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/travis-build.sh

+ 1 - 1
scripts/travis-build.sh

@@ -53,7 +53,7 @@ function download_and_unpack()
     # try to check md5sum, but Arduino provide only checksums for version 1.6 and greater
     wget $WGET_FLAGS https://downloads.arduino.cc/arduino-$1.md5sum.txt
     if [ $? -eq -0 ]; then
-	md5sum --ignore-missing -c arduino-$1.md5sum.txt
+	cat arduino-$1.md5sum.txt|grep "linux64"|md5sum -c
 	if [ $? -ne 0 ]; then
 	    echo "ERROR: md5sum for downloaded Arduino doesn't match"
 	    exit 1