From c53c133bcbd38b9d797fec0fa6dee8218d61eb62 Mon Sep 17 00:00:00 2001 From: John Luo Date: Thu, 5 Oct 2017 19:47:45 -0700 Subject: [PATCH] Compose store symbols to the correct location --- build/tasks/ComposeNewStore.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/tasks/ComposeNewStore.cs b/build/tasks/ComposeNewStore.cs index 1694f5ef25..90f601e0a2 100644 --- a/build/tasks/ComposeNewStore.cs +++ b/build/tasks/ComposeNewStore.cs @@ -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); }