From bfaace373cb1ebf4e39f5ee8c6bb215e9bf49fd6 Mon Sep 17 00:00:00 2001 From: Morten Christensen Date: Thu, 20 Mar 2014 14:00:07 +0100 Subject: [PATCH] Updating the install ps1 to only copy over the web.config on initial install to ensure that the web.config is correct. --- build/NuSpecs/tools/install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/NuSpecs/tools/install.ps1 b/build/NuSpecs/tools/install.ps1 index aaba10d364..0a0cd3c1eb 100644 --- a/build/NuSpecs/tools/install.ps1 +++ b/build/NuSpecs/tools/install.ps1 @@ -3,7 +3,7 @@ param($rootPath, $toolsPath, $package, $project) if ($project) { # Copy umbraco files from package to project folder $projectDestinationPath = Split-Path $project.FullName -Parent - $umbracoFilesPath = Join-Path $rootPath "UmbracoFiles\*" + $umbracoFilesPath = Join-Path $rootPath "UmbracoFiles\Web.config" Copy-Item $umbracoFilesPath $projectDestinationPath -recurse -force # Open readme.txt file