mirror of
https://github.com/arduino/Arduino.git
synced 2025-02-20 14:54:31 +01:00
Don't stop downloading package*index.json files if ONE fails for whatever reason. Fixes #3906
This commit is contained in:
parent
417857ee45
commit
5c7b8e6587
@ -282,7 +282,11 @@ public class ContributionInstaller {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for (String packageIndexURL : packageIndexURLs) {
|
for (String packageIndexURL : packageIndexURLs) {
|
||||||
|
try {
|
||||||
downloadIndexAndSignature(progress, downloadedPackageIndexFilesAccumulator, packageIndexURL, progressListener);
|
downloadIndexAndSignature(progress, downloadedPackageIndexFilesAccumulator, packageIndexURL, progressListener);
|
||||||
|
} catch (Exception e) {
|
||||||
|
System.err.println(e.getMessage());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
progress.stepDone();
|
progress.stepDone();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user