Skip to content

Commit

Permalink
Don't ToLower the entire path, just the filename
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesjrg committed Dec 15, 2016
1 parent 10379d9 commit c569751
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Paket.Core/ScriptGeneration.fs
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,8 @@ module ScriptGeneration =

let getGroupFile group =
let folder = getScriptFolder includeScriptsRootFolder framework group
FileInfo(Path.Combine(folder.FullName, sprintf "include.%s.group.%s" (group.GetCompareString()) extension).ToLowerInvariant())
let fileName = (sprintf "include.%s.group.%s" (group.GetCompareString()) extension).ToLowerInvariant()
FileInfo(Path.Combine(folder.FullName, fileName))

generateGroupScript dependenciesFile getGroupFile scriptWriter filterFrameworkLibs filterNuget framework

Expand Down

0 comments on commit c569751

Please sign in to comment.