File tree 1 file changed +5
-2
lines changed
arduino-core/src/cc/arduino/contributions/libraries 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ public LibraryInstaller(Platform platform) {
56
56
}
57
57
58
58
public synchronized void updateIndex (ProgressListener progressListener ) throws Exception {
59
- final MultiStepProgress progress = new MultiStepProgress (2 );
59
+ final MultiStepProgress progress = new MultiStepProgress (3 );
60
60
61
61
DownloadableContributionsDownloader downloader = new DownloadableContributionsDownloader (BaseNoGui .librariesIndexer .getStagingFolder ());
62
62
// Step 1: Download index
@@ -79,7 +79,10 @@ public synchronized void updateIndex(ProgressListener progressListener) throws E
79
79
if (!tmpFile .renameTo (outputFile ))
80
80
throw new Exception (tr ("An error occurred while updating libraries index!" ));
81
81
82
- // Step 2: Rescan index
82
+ // Step 2: Parse index
83
+ BaseNoGui .librariesIndexer .parseIndex ();
84
+
85
+ // Step 3: Rescan index
83
86
rescanLibraryIndex (progress , progressListener );
84
87
}
85
88
You can’t perform that action at this time.
0 commit comments