Repository: flex-utilities Updated Branches: refs/heads/develop 4de393593 -> 4475095f5
Re tried using the safe download. Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/2e2877fc Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/2e2877fc Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/2e2877fc Branch: refs/heads/develop Commit: 2e2877fcec37a0bd6280b906a1a8d183f9f4fa4d Parents: ca6e3fe Author: Christofer Dutz <[email protected]> Authored: Thu May 19 10:55:42 2016 +0200 Committer: Christofer Dutz <[email protected]> Committed: Thu May 19 10:55:42 2016 +0200 ---------------------------------------------------------------------- .../utilities/converter/retrievers/download/DownloadRetriever.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/2e2877fc/flex-maven-tools/flex-sdk-converter/retrievers/download/src/main/java/org/apache/flex/utilities/converter/retrievers/download/DownloadRetriever.java ---------------------------------------------------------------------- diff --git a/flex-maven-tools/flex-sdk-converter/retrievers/download/src/main/java/org/apache/flex/utilities/converter/retrievers/download/DownloadRetriever.java b/flex-maven-tools/flex-sdk-converter/retrievers/download/src/main/java/org/apache/flex/utilities/converter/retrievers/download/DownloadRetriever.java index 45682cb..096907e 100644 --- a/flex-maven-tools/flex-sdk-converter/retrievers/download/src/main/java/org/apache/flex/utilities/converter/retrievers/download/DownloadRetriever.java +++ b/flex-maven-tools/flex-sdk-converter/retrievers/download/src/main/java/org/apache/flex/utilities/converter/retrievers/download/DownloadRetriever.java @@ -120,7 +120,7 @@ public class DownloadRetriever extends BaseRetriever { final File targetFile = File.createTempFile(type.toString() + "-" + version + ((platformType != null) ? "-" + platformType : "") + "-", sourceUrl.getFile().substring(sourceUrl.getFile().lastIndexOf("."))); - performFastDownload(sourceUrl, targetFile); + performSafeDownload(new URI(getBinaryUrl(type, version, platformType)), targetFile); //////////////////////////////////////////////////////////////////////////////// // Do the extracting.
