Skip to content

Commit

Permalink
Fixed logic issue involving subdirectories during index creation.
Browse files Browse the repository at this point in the history
In cases where the target ivfDir does not already exist, only some of the necessary subdirectories were being created, leading to exceptions on index creation.
  • Loading branch information
stevenbedrick committed Apr 29, 2023
1 parent ae9d593 commit 1da1d49
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,13 @@ static void prepareDirectories(String ivfdir)
ivfDir.mkdir();
tablesDir.mkdir();
indicesDir.mkdir();

cuiconceptDir.mkdir();
cuisourceinfoDir.mkdir();
cuistDir.mkdir();
meshtcrelaxedDir.mkdir();
varsDir.mkdir();

}
}

Expand Down

0 comments on commit 1da1d49

Please sign in to comment.