mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-10 21:24:12 +01:00
Remove temporary files when updating library_index.json
Fix #4272 #4332
This commit is contained in:
parent
a6e36fac9d
commit
29912a0ac9
@ -53,8 +53,13 @@ public class GZippedJsonDownloader {
|
|||||||
try {
|
try {
|
||||||
new JsonDownloader(downloader, gzippedUrl).download(tmpFile, progress, statusText, progressListener);
|
new JsonDownloader(downloader, gzippedUrl).download(tmpFile, progress, statusText, progressListener);
|
||||||
File gzipTmpFile = new File(tmpFile.getParentFile(), GzipUtils.getCompressedFilename(tmpFile.getName()));
|
File gzipTmpFile = new File(tmpFile.getParentFile(), GzipUtils.getCompressedFilename(tmpFile.getName()));
|
||||||
|
// remove eventual leftovers from previous downloads
|
||||||
|
if (gzipTmpFile.exists()) {
|
||||||
|
gzipTmpFile.delete();
|
||||||
|
}
|
||||||
tmpFile.renameTo(gzipTmpFile);
|
tmpFile.renameTo(gzipTmpFile);
|
||||||
decompress(gzipTmpFile, tmpFile);
|
decompress(gzipTmpFile, tmpFile);
|
||||||
|
gzipTmpFile.delete();
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
new JsonDownloader(downloader, url).download(tmpFile, progress, statusText, progressListener);
|
new JsonDownloader(downloader, url).download(tmpFile, progress, statusText, progressListener);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user