mirror of https://github.com/noisymime/Arduino.git
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) {
|
||||
downloadIndexAndSignature(progress, downloadedPackageIndexFilesAccumulator, packageIndexURL, progressListener);
|
||||
try {
|
||||
downloadIndexAndSignature(progress, downloadedPackageIndexFilesAccumulator, packageIndexURL, progressListener);
|
||||
} catch (Exception e) {
|
||||
System.err.println(e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
progress.stepDone();
|
||||
|
|
Loading…
Reference in New Issue