Compose store symbols to the correct location

This commit is contained in:
John Luo 2017-10-05 19:47:45 -07:00
parent 8fbac32ed8
commit c53c133bcb
1 changed files with 2 additions and 2 deletions

View File

@ -90,8 +90,8 @@ namespace RepoTasks
if (!existingFiles.TryGetValue(id, out var versions) || !versions.Contains(version))
{
var destinationDir = Path.Combine(StoreDestination, recursiveDir);
if (!Directory.Exists(Path.Combine(StoreDestination, recursiveDir)))
var destinationDir = Path.Combine(SymbolsDestination, recursiveDir);
if (!Directory.Exists(Path.Combine(SymbolsDestination, recursiveDir)))
{
Directory.CreateDirectory(destinationDir);
}