Skip to content
Snippets Groups Projects
Commit b8211774 authored by Tony Sarajärvi's avatar Tony Sarajärvi
Browse files

Fix provision help script DownloadURL.sh


The script neglected the result of the sha1 after download.
Even with a failure it exited nicely.

Change-Id: I6c0e25c2b764a0ad54acbe317eddf395a56d7f1c
Reviewed-by: default avatarHeikki Halmet <heikki.halmet@qt.io>
parent 5656b484
Branches
Tags
No related merge requests found
...@@ -79,6 +79,10 @@ function DownloadURL { ...@@ -79,6 +79,10 @@ function DownloadURL {
echo "Failed downloading PKG from primary and alternative URLs" echo "Failed downloading PKG from primary and alternative URLs"
exit 1; exit 1;
;; ;;
$ExceptionSHA1)
echo "Failed checksum on $targetFile."
exit 1;
;;
esac esac
} }
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment