From 4e5cfc0f68a826a99e14c511940d35373cc6395f Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Thu, 27 Aug 2020 07:49:34 -0500 Subject: [PATCH] =?UTF-8?q?fix(directory):=20=F0=9F=90=9B=20fix=20path=20t?= =?UTF-8?q?o=20data=20dir?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Persistence/SeedExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/directory/src/FilterLists.Directory.Infrastructure/Persistence/SeedExtensions.cs b/services/directory/src/FilterLists.Directory.Infrastructure/Persistence/SeedExtensions.cs index a479273cc..b5d37718f 100644 --- a/services/directory/src/FilterLists.Directory.Infrastructure/Persistence/SeedExtensions.cs +++ b/services/directory/src/FilterLists.Directory.Infrastructure/Persistence/SeedExtensions.cs @@ -24,7 +24,7 @@ public static void HasDataJsonFile(this OwnedNavigationBuilder ownedNav private static IEnumerable GetEntities() { - var path = Path.Combine("../../../data", $"{typeof(TEntity).Name}.json"); + var path = Path.Combine("../../data", $"{typeof(TEntity).Name}.json"); if (!File.Exists(path)) return new HashSet(); var entitiesJson = File.ReadAllText(path);