Skip to content

Commit

Permalink
Paket pack had issues with \ in subfolders - closes #812
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed May 6, 2015
1 parent ed09d86 commit 480cf50
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#### 1.3.20 - 06.05.2015
* BUGFIX: Paket pack had issues with \ in subfolders - https://github.com/fsprojects/Paket/issues/812

#### 1.3.19 - 05.05.2015
* Fix: Find-Package-Versions command
* BUGFIX: Find-Package-Versions command

#### 1.3.18 - 05.05.2015
* Use https://api.nuget.org/v3/index.json for Autocomplete
Expand Down
2 changes: 1 addition & 1 deletion src/Paket.Core/NupkgWriter.fs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ let Write (core : CompleteCoreInfo) optional workingDir outputDir =
stream.Close()

let ensureValidTargetName (target:string) =
match target.Replace(" ", "%20") with
match target.Replace(" ", "%20").Replace("\\", "/") with
| t when t.EndsWith("/") -> t
| t when String.IsNullOrEmpty(t) -> ""
| "." -> ""
Expand Down

0 comments on commit 480cf50

Please sign in to comment.