From ed259cdf98d2105edc11b0b3d35b6342dc4049da Mon Sep 17 00:00:00 2001 From: Christian Steinert Date: Tue, 31 Jul 2018 14:16:42 +0200 Subject: [PATCH] Removes faulty creation of directories during generate-load-scripts. --- src/Paket.Core/PublicAPI.fs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Paket.Core/PublicAPI.fs b/src/Paket.Core/PublicAPI.fs index 3c6de733ed..51b8624e3c 100644 --- a/src/Paket.Core/PublicAPI.fs +++ b/src/Paket.Core/PublicAPI.fs @@ -300,8 +300,6 @@ type Dependencies(dependenciesFileName: string) = let scriptPath = Path.Combine (rootDir.FullName , sd.PartialPath) if verbose then verbosefn "scriptpath - %s" scriptPath - let scriptDir = Path.GetDirectoryName scriptPath |> Path.GetFullPath |> DirectoryInfo - scriptDir.Create() if verbose then verbosefn "created - '%s'" (Path.Combine(rootDir.FullName , sd.PartialPath)) sd.Save rootDir