Skip to content

Commit

Permalink
use compare string for groupname (so it matches format used in /packa…
Browse files Browse the repository at this point in the history
…ges subfolders
  • Loading branch information
smoothdeveloper authored and matthid committed Apr 25, 2016
1 parent 5f44a88 commit b1fcaa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Paket.Core/ScriptGeneration.fs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ module ScriptGeneration =
if groupName = Constants.MainDependencyGroup then
getIncludeScriptRootFolder includeScriptsRootFolder framework
else
Path.Combine((getIncludeScriptRootFolder includeScriptsRootFolder framework).FullName, groupName.ToString())
Path.Combine((getIncludeScriptRootFolder includeScriptsRootFolder framework).FullName, groupName.GetCompareString())
|> DirectoryInfo

let getScriptFile (includeScriptsRootFolder: DirectoryInfo) (framework: FrameworkIdentifier) (groupName: GroupName) (package: PackageName) (extension: string) =
Expand Down

0 comments on commit b1fcaa5

Please sign in to comment.