File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
arduino-core/src/cc/arduino/contributions/libraries Expand file tree Collapse file tree 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) {
5656 }
5757
5858 public synchronized void updateIndex (ProgressListener progressListener ) throws Exception {
59- final MultiStepProgress progress = new MultiStepProgress (2 );
59+ final MultiStepProgress progress = new MultiStepProgress (3 );
6060
6161 DownloadableContributionsDownloader downloader = new DownloadableContributionsDownloader (BaseNoGui .librariesIndexer .getStagingFolder ());
6262 // Step 1: Download index
@@ -79,7 +79,10 @@ public synchronized void updateIndex(ProgressListener progressListener) throws E
7979 if (!tmpFile .renameTo (outputFile ))
8080 throw new Exception (tr ("An error occurred while updating libraries index!" ));
8181
82- // Step 2: Rescan index
82+ // Step 2: Parse index
83+ BaseNoGui .librariesIndexer .parseIndex ();
84+
85+ // Step 3: Rescan index
8386 rescanLibraryIndex (progress , progressListener );
8487 }
8588
You can’t perform that action at this time.
0 commit comments