Patch casing of logs folder name (#4593)

pull/4603/head
Luke Latham 2017-10-18 18:54:56 -05:00 committed by Rick Anderson
parent 5af15081cd
commit 3003a564c9
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ The contents of the *publish* directory represents the *content root path*, also
```xml ```xml
<Target Name="CreateLogsFolder" AfterTargets="AfterPublish"> <Target Name="CreateLogsFolder" AfterTargets="AfterPublish">
<MakeDir Directories="$(PublishDir)logs" Condition="!Exists('$(PublishDir)logs')" /> <MakeDir Directories="$(PublishDir)logs" Condition="!Exists('$(PublishDir)logs')" />
<MakeDir Directories="$(PublishUrl)Logs" Condition="!Exists('$(PublishUrl)Logs')" /> <MakeDir Directories="$(PublishUrl)logs" Condition="!Exists('$(PublishUrl)logs')" />
</Target> </Target>
``` ```