Skip to content

Commit

Permalink
lib: fix variation folder in downloader, #TASK-5575, #TASK-5564
Browse files Browse the repository at this point in the history
  • Loading branch information
jtarraga committed Jul 24, 2024
1 parent 8ed0e0d commit 1442766
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public List<DownloadFile> downloadVariation() throws IOException, InterruptedExc
Path variationFolder = downloadFolder.resolve(VARIATION_DATA);
Files.createDirectories(variationFolder);

if (isAlreadyDownloaded(downloadFolder.resolve(getDataVersionFilename(VARIATION_DATA)), getDataName(VARIATION_DATA))) {
if (isAlreadyDownloaded(variationFolder.resolve(getDataVersionFilename(VARIATION_DATA)), getDataName(VARIATION_DATA))) {
return new ArrayList<>();
}

Expand Down

0 comments on commit 1442766

Please sign in to comment.