Skip to content

Commit

Permalink
reordner Shell.mv, fixes #2293
Browse files Browse the repository at this point in the history
  • Loading branch information
matthid committed Apr 27, 2019
1 parent e1e5b8d commit a731047
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
## 5.13.3-alpha - tbd

* tbd.
* ENHANCEMENT: TeamCitySummary, added in ReportGenerator 4.1.3 Fixes #2300 - https://github.com/fsharp/FAKE/pull/2301
* BUGFIX: `Shell.mv` now has the correct documented behavior, consistent with parameter names - https://github.com/fsharp/FAKE/issues/2293
* BUGFIX: NuGet Push command syntax. Fixes #2299 - https://github.com/fsharp/FAKE/pull/2304


## 5.13.2 - 2019-04-23

Expand Down
2 changes: 1 addition & 1 deletion src/app/Fake.IO.FileSystem/Shell.fs
Original file line number Diff line number Diff line change
Expand Up @@ -646,4 +646,4 @@ module Shell =
/// Like "mv" in a shell. Moves/renames a file
/// <param name="src">The source</param>
/// <param name="dest">The destination</param>
let mv src dest = moveFile src dest
let mv src dest = moveFile dest src

0 comments on commit a731047

Please sign in to comment.