Skip to content

Commit

Permalink
Overwrite files when necessary
Browse files Browse the repository at this point in the history
  • Loading branch information
synhershko committed Jul 26, 2012
1 parent 2bad19e commit 2b45994
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NAppUpdate.Framework/Utils/NauIpc.cs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ internal static void ExtractUpdaterFromResource(string updaterPath, string hostE

var dest = Path.Combine(updaterPath, dep);
FileSystem.CreateDirectoryStructure(dest);
File.Copy(fullPath, Path.Combine(updaterPath, dep));
File.Copy(fullPath, Path.Combine(updaterPath, dep), true);
}
}
}
Expand Down

0 comments on commit 2b45994

Please sign in to comment.