Skip to content

Commit

Permalink
Fix copy bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Kai Ito committed Mar 11, 2017
1 parent beb6ec6 commit f60eec3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cursed.Base/Models/Modpack.fs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ type Modpack(app: Application) as this =
match maybeCopyMod with
| Some copyModLocation ->
job {
File.Move(copyModLocation, modsDirectory @@ Path.GetFileName(copyModLocation))
File.Copy(copyModLocation, modsDirectory @@ Path.GetFileName(copyModLocation), false)
this.UpdateProgress file.ProjectId
}
| None ->
Expand Down
5 changes: 4 additions & 1 deletion release-notes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## New in 1.4.0
## New in 1.4.1
* Fix "bug" where existing mods were moved insead of copied because I'm an absolute idiot

## New in 1.4.0
* Load previously used download location and Curseforge link
* Copy existing mods from file system instead of redownloading them
* Add fancy icon
Expand Down

0 comments on commit f60eec3

Please sign in to comment.